Michal Walczak <michal.walc...@studentpartner.com> wrote: > Because I am Polish, I am using the extended ASCII charset, also my username > uses it. Apparently SQLite is not able to process > the file name with the file path which includes this characters.
Is too. sqlite3_open[_v2] accepts file names in UTF-8 encoding, while sqlite3_open16 accepts file names in UTF-16 encoding. You would need to convert your file names from this "extended ASCII" (by which I imagine you mean "system-default codepage", aka CP_ACP) to one of the two supported encodings. On Windows, use MultiByteToWideChar to convert to UTF-16. Better still, set up a Unicode build and handle all strings in UTF-16, which is the "native" encoding of Windows API, and is also directly supported by SQLite. -- Igor Tandetnik _______________________________________________ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users