My apologies for the bad editing, fixed copy below :

Column names and types can be found with the following calls :

      sqlite3_column_name(ppStmt,x);
      sqlite3_column_decltype(ppStmt,x); 
      sqlite3_column_type(ppStmt,x);

Where ppStmt is the structure you get back from the prepare/step
functions.

Listing the tble names I am not sure about, I would assume there is some
sort of 'select * from master' type query. Take a look at the code for
the sqlite3.exe console executable, I bet it is in there somewhere. 

_______________________________________________
sqlite-users mailing list
[email protected]
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to