Hi, I have an application that needs to open a database in the users's personal folder. I noticed that in some circunstances the sqlite3_open fail as the filename is in UTF16 format. I don't know that in advance so I could open the db with sqlite3_open16.
The question is: Is it safe to always use the UTF16 functions independent of the localization? What I mean is can I use the functions sqlite3_xxx16 instead of sqlite3_xxx for all cases? Thanks, COS