Small. Fast. Reliable.
Choose any three.

SQLite C Interface

Dynamically Typed Value Object

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.


This page last modified 2007/12/14 14:37:57 UTC