|
typedef struct Mem sqlite3_value;
SQLite uses the sqlite3_value object to represent all values that are or can be stored in a database table. SQLite uses dynamic typing for the values it stores. Values stored in sqlite3_value objects can be be integers, floating point values, strings, BLOBs, or NULL.
See also lists of Objects, Constants, and Functions.