Im pretty new into SQLite, and im trying to display a list with all the tbles in certain database.
Ive tried:
Code: Select all
Result = SQLiteExec("SELECT name FROM sqlite_master WHERE type='table' ORDER BY name")
Result = SQLiteExec("SELECT name FROM sqlite_master WHERE type IN ('table', 'index')")
Result = SQLiteExec("SELECT name FROM sqlite_master")
Rows = SQLiteRows()
Cols = SQLiteCols()
Gives me 0 as result.
Thanks in advance for any assitance or tip

