I'm try get name of tables in sql expression using sqlite3 API
.
Example:
select * form table1, table2, table3;
Sqlite3 API only return data of statment and only have information of name of columns with command sqlite3_column_name
but not have information of tables.
I need extract this:
table1
table2
table3