/* List all data dictionary tables */

SELECT 	* 
FROM	sqlite_master 
WHERE 	tbl_name LIKE 'sqlite%'

UNION

SELECT 'table','sqlite_master','sqlite_master',null,null