On Sep 2, 2009, at 9:06 AM, Alberto Simões wrote:

> Hellows
>
> Noticed today (with SQLite 3.6.17) that I can't insert non latin1  
> character
> using the sqlite3 shell.
> I am running under Mac OS Leopard (not yet the white one), and using  
> an
> unicode terminal.


Works for me:

sqlite-imac:bld drh$ ./sqlite3
SQLite version 3.6.17
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> create table t1(x);
sqlite> insert into t1 values('Alberto Simões ξ €  夷');
sqlite> select * from t1;
Alberto Simões ξ € 夷
sqlite>


D. Richard Hipp
d...@hwaci.com



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

Reply via email to