I'm creating a interface to run a SQL query (C++ and QT), but i want to page and count the results.
Something like:
select count (User select) as count and select (user select) limit 100;
Example:
select count (select * from tbl_data where id >10);
Is there a way to do that or use the SQLITE3 library to do that?
Regards.