Skip to content

SQLite has no boolean datatype

sqlite doesn’t have a special storage class for boolean values. Instead, you should usually use a really small integer (0 for false and 1 for true)

Sources