Quote:
Originally Posted by LoneAngelIbesu
Using requestsql2() pointing to the "sqlite_master" database results in no error.
|
sqlite_master is a table not a database. Stefan said in an earlier post that requestsql2() is for choosing between mysql and sqlite databases, so at the moment it is useless to you and you shouldn't use it.
select tbl_name from sqlite_master where type='table' order by tbl_name
That would list all tables in the SQLite database.