August 2010
Intermediate to advanced
526 pages
23h 39m
English
sqlite3_declare_vtab() — Define the schema of a virtual table [EXP]
int sqlite3_declare_vtab( sqlite3* db, const char *sql );
db
A database connection.
sql
A UTF-8 encoded string that contains an
appropriately formatted CREATE TABLE
statement.
An SQLite result code.
This function is used by a virtual table module to define the schema of the virtual table.
For more information on writing a virtual table module, see Chapter 10.
Read now
Unlock full access