BOOLEAN SQLite data type?
From the SQLite website (
SQLite Frequently Asked Questions
SQLite uses dynamic typing.
Content can be stored as INTEGER, REAL, TEXT, BLOB, or as NULL.
So, you are best of to store as integer, so 0 or 1. Requires just one Byte.
RBS