On 15 Jun 2016, at 3:44am, Wang, Wei <wei.w...@emc.com> wrote:

> Under the ANSI encoding environment, I created a table named TEST_PRODUÇÃO in 
> the database.

All strings handled by SQLite, including the strings that make up SQL commands 
like "CREATE TABLE ...", are Unicode strings.  If you are constructing an ANSI 
string and passing that to sqlite3_exec() or sqlite3_prepare(), then you are 
doing the wrong thing.  You must convert to Unicode before passing the string 
to any sqlite3 API call.

Simon.
_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to