I've tried a lot of things.
query.isNull()
tried the query.Record() then int col = query.Record()
if I put query.size() it will return -1 even if the query has result.
How do i count queries in SQLite?
I wanted to do this:-
if(the query returns null or empty)
{
do this;
}
else
{
do that;
}