> I'm looking for the spatialite query which gives me a list of table
> names present in the database.
>
>
Hi Véronique,
there are several options available; e.g. if you are using
the sqlite3 or spatialite CLI tools you simply have to
execute this "dot macro" command:
.tables
a more generic approach based on pure SQL is the one to
query the SQLite's own metable catalog e.g.
SELECT tbl_name FROM sqlite_master
WHERE type = 'table';
please read the appropriate documentation:
http://www.sqlite.org/faq.html#q7
bye Sandro