Hello!

See code 
http://paste.pocoo.org/show/81137/

Compile as
gcc sqlite_test.c -o sqlite_test -lsqlite3

Create table log in database log.db as
$ sqlite3 log.db
SQLite version 3.5.9
Enter ".help" for instructions
sqlite> create table log(value); 
sqlite> .q

Start program
./sqlite_test

And see result
$ sqlite3 log.db
SQLite version 3.5.9
Enter ".help" for instructions
sqlite> select length(value) from log;
3325

And "what I'm doing wrong"? :-)

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

Reply via email to