Database
sqllite.txt
Associated article: Query Anything with SQLite
Tags: Database Web Development .NET Tools Open Source
Published source code accompanying the article by Michael Owens in which he discusss virtual tables, which are the foundation of some of SQLite's larger features, including full text search. Also see SQLLITE.ZIP.
Query Anything with SQLite
by Michael Owens
Listing One
static sqlite3_module example_module =
{
0, /* iVersion */
vt_create, /* xCreate - create a vtable */
vt_connect, /* xConnect - associate a vtable with a connection */
vt_best_index, /* xBestIndex - best index */
vt_...


