Home | History | Annotate | Download | only in dist

Lines Matching refs:sqlite3_declare_vtab

5266 SQLITE_API int sqlite3_declare_vtab(sqlite3*, const char *zSQL);
10364 u8 declareVtab; /* True if inside sqlite3_declare_vtab() */
74808 ** or if the parser is being invoked from within sqlite3_declare_vtab.
75631 ** to an sqlite3_declare_vtab() call. In that case only the column names
84709 #define sqlite3_declare_vtab sqlite3_api->declare_vtab
84910 # define sqlite3_declare_vtab 0
85006 sqlite3_declare_vtab,
95220 SQLITE_API int sqlite3_declare_vtab(sqlite3 *db, const char *zCreateTable){
108898 ** Invoke sqlite3_declare_vtab() to declare the schema for the FTS3 table
108926 rc = sqlite3_declare_vtab(p->db, zSql);
122178 ** that is successful, call sqlite3_declare_vtab() to configure
122200 }else if( SQLITE_OK!=(rc = sqlite3_declare_vtab(db, zSql)) ){