Lines Matching defs:sqlite3_declare_vtab
5721 SQLITE_API int sqlite3_declare_vtab(sqlite3*, const char *zSQL);
11146 u8 declareVtab; /* True if inside sqlite3_declare_vtab() */
11173 ** Return true if currently inside an sqlite3_declare_vtab() call.
81147 ** or if the parser is being invoked from within sqlite3_declare_vtab.
81997 ** to an sqlite3_declare_vtab() call. In that case only the column names
91279 #define sqlite3_declare_vtab sqlite3_api->declare_vtab
91489 # define sqlite3_declare_vtab 0
91588 sqlite3_declare_vtab,
101484 ** the sqlite3_declare_vtab() and sqlite3_vtab_config() APIs, both of which
102125 SQLITE_API int sqlite3_declare_vtab(sqlite3 *db, const char *zCreateTable){
117166 ** Invoke sqlite3_declare_vtab() to declare the schema for the FTS3 table
117199 rc = sqlite3_declare_vtab(p->db, zSql);
121896 rc = sqlite3_declare_vtab(db, FTS3_TERMS_SCHEMA);
133193 ** that is successful, call sqlite3_declare_vtab() to configure
133215 }else if( SQLITE_OK!=(rc = sqlite3_declare_vtab(db, zSql)) ){