Lines Matching defs:xConnect
7631 int (*xConnect)(sqlite3*, void *pAux,
7881 ** into the [xCreate] and [xConnect] methods of the virtual table module
7903 void *pClientData /* Client data for xCreate/xConnect */
7909 void *pClientData, /* Client data for xCreate/xConnect */
7980 ** ^The [xCreate] and [xConnect] methods of a
10060 ** This function may be called by either the [xConnect] or [xCreate] method
10064 ** If this interface is invoked outside the context of an xConnect or
10069 ** which is passed in as the first argument to the [xConnect] or [xCreate]
10092 ** [xCreate] or [xConnect] method invoked [sqlite3_vtab_config()] does not
10122 ** the [xConnect] or [xCreate] methods of a [virtual table] implementation
10130 ** the [xConnect] or [xCreate] methods of a [virtual table] implementation
10141 ** the [xConnect] or [xCreate] methods of a [virtual table] implementation
18338 ** connection handle passed to it via the xConnect() or xCreate() method
105980 /* xConnect */ bytecodevtabConnect,
141508 ** Pragma virtual table module xConnect method.
141758 pragmaVtabConnect, /* xConnect - connect to an existing table */
155410 ** Before a virtual table xCreate() or xConnect() method is invoked, the
155414 ** are invoked only from within xCreate and xConnect methods.
155435 void *pAux, /* Context pointer for xCreate/xConnect */
155483 void *pAux, /* Context pointer for xCreate/xConnect */
155504 void *pAux /* Context pointer for xCreate/xConnect */
155519 void *pAux, /* Context pointer for xCreate/xConnect */
155944 ** Invoke a virtual table constructor (either xCreate or xConnect). The
156082 ** This function is invoked by the parser to call the xConnect() method
156110 rc = vtabCallConstructor(db, pTab, pMod, pMod->pModule->xConnect, &zErr);
156199 ** valid to call this function from within the xCreate() or xConnect() of a
156642 ** Any virtual table module for which xConnect and xCreate are the same
156652 if( pModule->xCreate!=0 && pModule->xCreate!=pModule->xConnect ) return 0;
156670 rc = vtabCallConstructor(db, pTab, pMod, pModule->xConnect, &zErr);
156716 ** Call from within the xCreate() or xConnect() methods to provide
186009 ** structure. The xCreate and xConnect methods create an instance
186776 ** passed as the first argument. This is done as part of the xConnect()
187313 ** This function is the implementation of both the xConnect and xCreate
187324 int isCreate, /* True for xCreate, false for xConnect */
187328 const char * const *argv, /* xCreate/xConnect argument array */
187655 ** database. TODO: For xConnect(), it could verify that said tables exist.
187704 ** The xConnect() and xCreate() methods for the virtual table. All the
187711 const char * const *argv, /* xCreate/xConnect argument array */
187721 const char * const *argv, /* xCreate/xConnect argument array */
190192 /* xConnect */ fts3ConnectMethod,
192395 ** This function does all the work for both the xConnect and xCreate methods.
192396 ** These tables have no persistent representation of their own, so xConnect
192403 const char * const *argv, /* xCreate/xConnect argument array */
192869 fts3auxConnectMethod, /* xConnect */
196158 ** This function does all the work for both the xConnect and xCreate methods.
196159 ** These tables have no persistent representation of their own, so xConnect
196171 const char * const *argv, /* xCreate/xConnect argument array */
196436 fts3tokConnectMethod, /* xConnect */
210171 jsonEachConnect, /* xConnect */
210200 jsonEachConnect, /* xConnect */
211290 ** the virtual table module xCreate() and xConnect() methods.
211310 ** Rtree virtual table module xConnect method.
213665 rtreeConnect, /* xConnect - connect to an existing table */
213839 ** This function is called from within the xConnect() or xCreate() method to
213844 ** If this function is being called as part of an xConnect(), then the rtree
213856 int isCreate, /* True for xCreate, false for xConnect */
213902 ** This function is the implementation of both the xConnect and xCreate
213916 int isCreate /* True for xCreate, false for xConnect */
215830 ** This function is the implementation of both the xConnect and xCreate
215844 int isCreate /* True for xCreate, false for xConnect */
215938 ** GEOPOLY virtual table module xConnect method.
216366 geopolyConnect, /* xConnect - connect to an existing table */
224416 statConnect, /* xConnect */
224854 dbpageConnect, /* xConnect */
236160 ** or xConnect method of the virtual table. This function attempts to
249553 fts5structConnectMethod, /* xConnect */
249942 ** This function is the implementation of both the xConnect and xCreate
249953 int bCreate, /* True for xCreate, false for xConnect */
249957 const char * const *argv, /* xCreate/xConnect argument array */
250022 ** The xConnect() and xCreate() methods for the virtual table. All the
250029 const char * const *argv, /* xCreate/xConnect argument array */
250039 const char * const *argv, /* xCreate/xConnect argument array */
252600 /* xConnect */ fts5ConnectMethod,
256677 ** This function is the implementation of both the xConnect and xCreate
256701 const char * const *argv, /* xCreate/xConnect argument array */
256756 ** The xConnect() and xCreate() methods for the virtual table. All the
256763 const char * const *argv, /* xCreate/xConnect argument array */
256773 const char * const *argv, /* xCreate/xConnect argument array */
257293 /* xConnect */ fts5VocabConnectMethod,
257622 stmtConnect, /* xConnect */