Hi list:
Actually I have an application that regularly uses expresions as:
char *zUserName = "My name";
char *zSQL = sqlite3_mprintf ("INSERT INTO table VALUES('%q')", zUserName);
Because of internationalization I need use Unicode instead of ASCII chars:
w_char *zwUserName = L"My Chinese Name";
w_char *zwSQL = sqlite3_xxxxx ("INSERT INTO table VALUES('%q')", zwUserName);
Some suggestion?
Thanks in advance
A.J.Millan
_______________________________________________
sqlite-users mailing list
[email protected]
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users