Is it possible to define bit column in sqlite? [duplicate] Is it possible to define bit column in sqlite? [duplicate] sqlite sqlite

Is it possible to define bit column in sqlite? [duplicate]


No.

SQLite does not have a separate Boolean storage class. Instead, Boolean values are stored as integers 0 (false) and 1 (true).

Source


AS at 2021-01-20, I should say YES, you can define bit datatype in SQLite and it's working.