|
typedef struct Mem sqlite3_value;
SQLite uses dynamic typing for the values it stores. Values can be integers, floating point values, strings, BLOBs, or NULL. When passing around values internally, each value is represented as an instance of the sqlite3_value object.
See also lists of Objects, Constants, and Functions.