Home | History | Annotate | Download | only in orig

Lines Matching defs:sqlite3_declare_vtab

5656 SQLITE_API int sqlite3_declare_vtab(sqlite3*, const char *zSQL);
11983 u8 declareVtab; /* True if inside sqlite3_declare_vtab() */
12010 ** Return true if currently inside an sqlite3_declare_vtab() call.
86042 ** or if the parser is being invoked from within sqlite3_declare_vtab.
86977 ** to an sqlite3_declare_vtab() call. In that case only the column names
97291 #define sqlite3_declare_vtab sqlite3_api->declare_vtab
97527 # define sqlite3_declare_vtab 0
97626 sqlite3_declare_vtab,
109351 ** the sqlite3_declare_vtab() and sqlite3_vtab_config() APIs, both of which
110024 SQLITE_API int sqlite3_declare_vtab(sqlite3 *db, const char *zCreateTable){
127391 ** Invoke sqlite3_declare_vtab() to declare the schema for the FTS3 table
127424 rc = sqlite3_declare_vtab(p->db, zSql);
132731 rc = sqlite3_declare_vtab(db, FTS3_AUX_SCHEMA);
136416 rc = sqlite3_declare_vtab(db, FTS3_TOK_SCHEMA);
147848 ** that is successful, call sqlite3_declare_vtab() to configure
147870 }else if( SQLITE_OK!=(rc = sqlite3_declare_vtab(db, zSql)) ){