PRAGMA table_info(table-name);
http://sqlite.org/pragma.html
That's just what I was looking for. Thank you very much!
It looks very good, but is there also a way to query the currently opened database to get a list of tables?
PRAGMA table_info(table-name);
http://sqlite.org/pragma.html
That's just what I was looking for. Thank you very much!