SQLite Data Types
SQLite supports various data types, and this page provides a compilation of commonly used data types in SQLite.
-
BLOB
In SQLite, theBLOB
data type is used to store binary data. -
INTEGER
In SQLite, theINTEGER
data type is used to store integer values. -
NULL
In SQLite, the NULL data type is used to represent a missing or unknown value. -
NUMERIC
In SQLite, theNUMERIC
data type is used to store numbers with variable precision. -
REAL
REAL
is a data type in SQLite used to store floating-point numbers, which are numbers with a decimal point. -
TEXT
TEXT
is a data type in SQLite used for storing text strings.