Home | History | Annotate | Download | only in orig

Lines Matching full:xconnect

5764   int (*xConnect)(sqlite3*, void *pAux,
5941 ** into the [xCreate] and [xConnect] methods of the virtual table module
5957 void *pClientData /* Client data for xCreate/xConnect */
5963 void *pClientData, /* Client data for xCreate/xConnect */
6017 ** ^The [xCreate] and [xConnect] methods of a
7820 ** This function may be called by either the [xConnect] or [xCreate] method
7824 ** If this interface is invoked outside the context of an xConnect or
7845 ** [xCreate] or [xConnect] method invoked [sqlite3_vtab_config()] does not
12139 ** connection handle passed to it via the xConnect() or xCreate() method
116785 ** Before a virtual table xCreate() or xConnect() method is invoked, the
116789 ** are invoked only from within xCreate and xConnect methods.
116807 void *pAux, /* Context pointer for xCreate/xConnect */
116852 void *pAux /* Context pointer for xCreate/xConnect */
116867 void *pAux, /* Context pointer for xCreate/xConnect */
117198 ** record of the table. The xConnect() method is not called until
117243 ** Invoke a virtual table constructor (either xCreate or xConnect). The
117376 ** This function is invoked by the parser to call the xConnect() method
117403 rc = vtabCallConstructor(db, pTab, pMod, pMod->pModule->xConnect, &zErr);
117490 ** valid to call this function from within the xCreate() or xConnect() of a
117873 ** Any virtual table module for which xConnect and xCreate are the same
117884 if( pModule->xCreate!=0 && pModule->xCreate!=pModule->xConnect ) return 0;
117899 rc = vtabCallConstructor(db, pTab, pMod, pModule->xConnect, &zErr);
117944 ** Call from within the xCreate() or xConnect() methods to provide
135734 ** structure. The xCreate and xConnect methods create an instance
136430 ** passed as the first argument. This is done as part of the xConnect()
136952 ** This function is the implementation of both the xConnect and xCreate
136963 int isCreate, /* True for xCreate, false for xConnect */
136967 const char * const *argv, /* xCreate/xConnect argument array */
137291 ** database. TODO: For xConnect(), it could verify that said tables exist.
137336 ** The xConnect() and xCreate() methods for the virtual table. All the
137343 const char * const *argv, /* xCreate/xConnect argument array */
137353 const char * const *argv, /* xCreate/xConnect argument array */
139666 /* xConnect */ fts3ConnectMethod,
141833 ** This function does all the work for both the xConnect and xCreate methods.
141834 ** These tables have no persistent representation of their own, so xConnect
141841 const char * const *argv, /* xCreate/xConnect argument array */
142302 fts3auxConnectMethod, /* xConnect */
145579 ** This function does all the work for both the xConnect and xCreate methods.
145580 ** These tables have no persistent representation of their own, so xConnect
145592 const char * const *argv, /* xCreate/xConnect argument array */
145856 fts3tokConnectMethod, /* xConnect */
154789 ** the virtual table module xCreate() and xConnect() methods.
154809 ** Rtree virtual table module xConnect method.
157035 rtreeConnect, /* xConnect - connect to an existing table */
157155 ** This function is called from within the xConnect() or xCreate() method to
157160 ** If this function is being called as part of an xConnect(), then the rtree
157172 int isCreate, /* True for xCreate, false for xConnect */
157205 ** This function is the implementation of both the xConnect and xCreate
157219 int isCreate /* True for xCreate, false for xConnect */
163527 statConnect, /* xConnect */
165482 jsonEachConnect, /* xConnect */
165509 jsonEachConnect, /* xConnect */
169346 ** or xConnect method of the virtual table. This function attempts to
178553 ** This function is the implementation of both the xConnect and xCreate
178564 int bCreate, /* True for xCreate, false for xConnect */
178568 const char * const *argv, /* xCreate/xConnect argument array */
178617 ** The xConnect() and xCreate() methods for the virtual table. All the
178624 const char * const *argv, /* xCreate/xConnect argument array */
178634 const char * const *argv, /* xCreate/xConnect argument array */
180612 /* xConnect */ fts5ConnectMethod,
183881 ** This function is the implementation of both the xConnect and xCreate
183905 const char * const *argv, /* xCreate/xConnect argument array */
183959 ** The xConnect() and xCreate() methods for the virtual table. All the
183966 const char * const *argv, /* xCreate/xConnect argument array */
183976 const char * const *argv, /* xCreate/xConnect argument array */
184218 /* xConnect */ fts5VocabConnectMethod,