I'm using sqlite3 in my c++ program and am trying to run an SQL string in the sqlite3_get_table function.
Here's my sql string.
SELECT name FROM sqlite_master WHERE type='table' AND name=test_table;
I keep getting the error "no such column "test_table"" .
All I am trying to do is confirm the existence of a table in my database. That's all. Any clues as to what's wrong with my string.