you get data out of the columns using pre-provided methods such as getInt(...), getString(...), but how do you get data out of something like a SELECT statement, in sqlite the statement I'd like to do something like:
SELECT COUNT(COLUMN_NAME) FROM TABLE_NAME
how would you execute this query and then get the result to an int variable?