Searching for the SQL to retrieve table names for a SQLite database finds this SQL:
SELECT name FROM sqlite_master WHERE type="table"
The column names for MyTable can be found like this:
SELECT * FROM MyTable LIMIT 0
Provided that Ignore Header is false.