Store boolean value in SQLite

What is the type for a BOOL value in SQLite? I want to store in my table TRUE/FALSE values.

I could create a column of INTEGER and store in it values 0 or 1, but it won’t be the best way to implement BOOL type.

Is there a way?

9 Answers
9

Leave a Comment