Small, Fast, Reliable.
Choose any three.

SQLite C Interface

Dynamically Typed Value Object

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.


This page last modified 2007/11/22 00:41:31 UTC