Michael Boldin via alt email
<mboldin_2000-/[EMAIL PROTECTED]> wrote:
And for anyone else using python and pysqlite, here is now to get a
list of table

# Find table names
qx='select tbl_name from sqlite_master'

You'd want something like

select tbl_name from sqlite_master where type='table';

In addition to tables, sqlite_master also refers to indexes, triggers and views.

Igor Tandetnik

-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------

Reply via email to