Вопрос

Sounds like a basic question but I couldn't seem to find it. Is there a way to define in SQLite a column which will be a single bit?

Это было полезно?

Решение

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.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top