Querying bool column always returns false Querying bool column always returns false sqlite sqlite

Querying bool column always returns false


Edited:

SqlLite has some limited types, bool is not one of them:http://www.tutorialspoint.com/sqlite/sqlite_data_types.htm

You have to use Int (0 / 1)