On Oct 2, 2009, at 12:33 PM, Keith Roberts wrote: > I'm trying to learn the syntax for SQLite, and I'm getting > stuck with the type-def production in: > > http://www.sqlite.org/lang_createtable.html > > I read it as a type-def production is a sequence of one or > more instances of a terminal symbol - called name, > optionally followed by a non-terminal signed number in > parantheses, which may optionally be followed by a comma and > another signed number within those parantheses.
I think that reading is correct. sqlite> create table t(a b c d e(-43)); sqlite> pragma table_info(t); 0|a|b c d e(-43)|0||0 Dan. _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

