On 5/8/18, Francis Kus <[email protected]> wrote: > I am able to open my database file if the path contains no accents. However, > if I change even one letter to an accented letter (e.g. replace 'e' with > 'é'), the database does not open and I get the error message "unable to open > database file".
The argument to sqlite3_open() need to be UTF-8. What encoding are you using? -- D. Richard Hipp [email protected] _______________________________________________ sqlite-users mailing list [email protected] http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

