Re: [sqlite] How to get the schema

2006-03-26 Thread Philipp Knüsel
> Is there another way to get the column schema besides parsing the original > CREATE TABLE command? > > thx > -Brett G. > > > This message was sent using IMP, the Internet Messaging Program. Hello Brett You can access the sqlite_

Re: [sqlite] How to get the schema

2006-03-26 Thread Boris Popov
Brett Goodman wrote: Is there another way to get the column schema besides parsing the original CREATE TABLE command? Sure, sqlite3_table_column_metadata, see http://sqlite.org/capi3ref.html#sqlite3_table_column_metadata This routine is used to obtain meta information about a specific column