On Apr 10, 2009, at 5:58 AM, Alexey Pechnikov wrote:
>
> Note: TCL interface binds all as text values

False.  The following TCL script is proof by counter-example:

    package require sqlite3
    sqlite3 db :memory:
    set x [expr {1+2}]
    db eval {
      CREATE TABLE t1(x);
      INSERT INTO t1 VALUES($x);
    }
    puts [db one {SELECT typeof(x) FROM t1}]


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