Home | History | Annotate | Download | only in amalgamation

Lines Matching defs:sqlite3_declare_vtab

5346 SQLITE_API int sqlite3_declare_vtab(sqlite3*, const char *zSQL);
10590 u8 declareVtab; /* True if inside sqlite3_declare_vtab() */
76790 ** or if the parser is being invoked from within sqlite3_declare_vtab.
77642 ** to an sqlite3_declare_vtab() call. In that case only the column names
86764 #define sqlite3_declare_vtab sqlite3_api->declare_vtab
86970 # define sqlite3_declare_vtab 0
87066 sqlite3_declare_vtab,
97349 SQLITE_API int sqlite3_declare_vtab(sqlite3 *db, const char *zCreateTable){
112260 * schema in *pzCreateSql (for sqlite3_declare_vtab).
112395 rc = sqlite3_declare_vtab(db, zCreateSql);
113574 ** Invoke sqlite3_declare_vtab() to declare the schema for the FTS3 table
113602 rc = sqlite3_declare_vtab(p->db, zSql);
116853 rc = sqlite3_declare_vtab(db, FTS3_TERMS_SCHEMA);
127301 ** that is successful, call sqlite3_declare_vtab() to configure
127323 }else if( SQLITE_OK!=(rc = sqlite3_declare_vtab(db, zSql)) ){