[sqlite] How is the name of the db file is identified?

2015-12-28 Thread Simon Slavin
On 28 Dec 2015, at 2:02am, Igor Korot wrote: > Is it possible to save the SQLite DB file whose name contains some Unicode > characters? The filename you pass to sqlite3_open_v2() should be encoded in UTF-8. The filename you pass to sqlite3_open16() should be encoded in UTF-16. Both of these

[sqlite] How is the name of the db file is identified?

2015-12-27 Thread Igor Korot
Hi, ALL, Is it possible to save the SQLite DB file whose name contains some Unicode characters? Have such a character in the table name? Thank you.