Home | History | Annotate | Download | only in dist

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.
86062 ** or if the parser is being invoked from within sqlite3_declare_vtab.
86997 ** to an sqlite3_declare_vtab() call. In that case only the column names
97311 #define sqlite3_declare_vtab sqlite3_api->declare_vtab
97547 # define sqlite3_declare_vtab 0
97646 sqlite3_declare_vtab,
109371 ** the sqlite3_declare_vtab() and sqlite3_vtab_config() APIs, both of which
110044 SQLITE_API int sqlite3_declare_vtab(sqlite3 *db, const char *zCreateTable){
127411 ** Invoke sqlite3_declare_vtab() to declare the schema for the FTS3 table
127444 rc = sqlite3_declare_vtab(p->db, zSql);
132763 rc = sqlite3_declare_vtab(db, FTS3_AUX_SCHEMA);
136448 rc = sqlite3_declare_vtab(db, FTS3_TOK_SCHEMA);
147880 ** that is successful, call sqlite3_declare_vtab() to configure
147902 }else if( SQLITE_OK!=(rc = sqlite3_declare_vtab(db, zSql)) ){