I have tried many things.
query.isNull()
tried query.Record()thenint col = query.Record()
if I put it query.size(), it will return -1, even if the query has a 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;
}
source
share