SQLite Forum

sqlite3_exec stepping through multiple queries
Login
With single step query execution i.e. sqlite3_exec, given multiple SQL statements e.g.

```
select * from thisTable;select * from thatTable;

```
Is there any 'indicator' that the first query as completed i.e. progressed to the next query?