Re: How can one detect which tables are in a database?
Charles D Hixson <[email protected]>
| Newsgroups | gmane.comp.python.db.pysqlite.user |
|---|---|
| Message-ID | <[email protected]> |
Andy Chambers wrote: > You can query the table sqlite_master using various values for the type > > e.g. > > select name > from sqlite_master > where type = 'table' or type = 'view' > > More more detail, see the faq on http://sqlite.org > > Regards, > Andy > Thanks! This is the answer I was looking for. (Nice to see that it's easier!)