Home | History | Annotate | Download | only in dist

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.
81183 ** or if the parser is being invoked from within sqlite3_declare_vtab.
82033 ** to an sqlite3_declare_vtab() call. In that case only the column names
91315 #define sqlite3_declare_vtab sqlite3_api->declare_vtab
91525 # define sqlite3_declare_vtab 0
91624 sqlite3_declare_vtab,
101520 ** the sqlite3_declare_vtab() and sqlite3_vtab_config() APIs, both of which
102161 SQLITE_API int sqlite3_declare_vtab(sqlite3 *db, const char *zCreateTable){
117202 ** Invoke sqlite3_declare_vtab() to declare the schema for the FTS3 table
117235 rc = sqlite3_declare_vtab(p->db, zSql);
121944 rc = sqlite3_declare_vtab(db, FTS3_TERMS_SCHEMA);
133241 ** that is successful, call sqlite3_declare_vtab() to configure
133263 }else if( SQLITE_OK!=(rc = sqlite3_declare_vtab(db, zSql)) ){