sqliteHow do I use the SQLite bool type?
The SQLite bool type is a storage class used to store either a 0 (false) or 1 (true). It is used to store boolean values in an SQLite database.
Example code
CREATE TABLE test (
id INTEGER PRIMARY KEY,
is_active BOOL
);
INSERT INTO test (is_active) VALUES (true);
SELECT * FROM test;
Output example
id | is_active
----+-----------
1 | 1
CREATE TABLE
: This statement creates a table calledtest
with two columns:id
andis_active
.INTEGER PRIMARY KEY
: This specifies that theid
column is an integer and is the primary key of the table.BOOL
: This specifies that theis_active
column is of type bool.INSERT INTO
: This statement inserts a value oftrue
into theis_active
column of thetest
table.SELECT *
: This statement retrieves all the data from thetest
table.
Helpful links
More of Sqlite
- How do I use SQLite transactions?
- How do I use the SQLite ZIP VFS to compress a database?
- How do I check if a SQLite database exists?
- How do I use an SQLite UPDATE statement with a SELECT query?
- How do I use SQLite with Zephyr?
- How can SQLite and ZFS be used together for software development?
- How can I resolve the error "no such table" when using SQLite?
- How do I use the SQLite zfill function?
- How do I generate XML output from a SQLite database?
- How can I use SQLite window functions in my software development project?
See more codes...