Hi Vance,

Could you maybe give one or two examples on exactly what you need that
you're not finding on the website?   

As far as syntax, it's pretty much all linked from:
  http://www.sqlite.org/lang.html

E.g. for automatically incrementing primary key, see:
   http://www.sqlite.org/lang_createtable.html#rowid
   (if you must have an auto-incrementing key other than an integer
primary key, you will need to implement it yourself via a trigger)

As far as typing, sqlite differs from many other databases:
  http://www.sqlite.org/datatype3.html 

As far as a manual on SQL itself, yes, you would need to look elsewhere.
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to