Login
Remember
Register
Ask a Question
What data types are supported by SQLite?
0
votes
asked
Nov 12, 2021
in
SQLite
by
Robin
What data types are supported by SQLite?
sqlite-data-types
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Nov 12, 2021
by
Robin
SQLite uses dynamic typing. Content can be stored as INTEGER, REAL, TEXT, BLOB, or as NULL.
...