Lines Matching defs:xConnect
7398 int (*xConnect)(sqlite3*, void *pAux,
7644 ** into the [xCreate] and [xConnect] methods of the virtual table module
7666 void *pClientData /* Client data for xCreate/xConnect */
7672 void *pClientData, /* Client data for xCreate/xConnect */
7743 ** ^The [xCreate] and [xConnect] methods of a
9828 ** This function may be called by either the [xConnect] or [xCreate] method
9832 ** If this interface is invoked outside the context of an xConnect or
9837 ** which is passed in as the first argument to the [xConnect] or [xCreate]
9860 ** [xCreate] or [xConnect] method invoked [sqlite3_vtab_config()] does not
9890 ** the [xConnect] or [xCreate] methods of a [virtual table] implmentation
9898 ** the [xConnect] or [xCreate] methods of a [virtual table] implmentation
17699 ** connection handle passed to it via the xConnect() or xCreate() method
102934 /* xConnect */ bytecodevtabConnect,
136851 ** Pragma virtual table module xConnect method.
137099 pragmaVtabConnect, /* xConnect - connect to an existing table */
149954 ** Before a virtual table xCreate() or xConnect() method is invoked, the
149958 ** are invoked only from within xCreate and xConnect methods.
149979 void *pAux, /* Context pointer for xCreate/xConnect */
150027 void *pAux, /* Context pointer for xCreate/xConnect */
150048 void *pAux /* Context pointer for xCreate/xConnect */
150063 void *pAux, /* Context pointer for xCreate/xConnect */
150489 ** Invoke a virtual table constructor (either xCreate or xConnect). The
150623 ** This function is invoked by the parser to call the xConnect() method
150651 rc = vtabCallConstructor(db, pTab, pMod, pMod->pModule->xConnect, &zErr);
150740 ** valid to call this function from within the xCreate() or xConnect() of a
151162 ** Any virtual table module for which xConnect and xCreate are the same
151172 if( pModule->xCreate!=0 && pModule->xCreate!=pModule->xConnect ) return 0;
151190 rc = vtabCallConstructor(db, pTab, pMod, pModule->xConnect, &zErr);
151236 ** Call from within the xCreate() or xConnect() methods to provide
179505 ** structure. The xCreate and xConnect methods create an instance
180267 ** passed as the first argument. This is done as part of the xConnect()
180803 ** This function is the implementation of both the xConnect and xCreate
180814 int isCreate, /* True for xCreate, false for xConnect */
180818 const char * const *argv, /* xCreate/xConnect argument array */
181145 ** database. TODO: For xConnect(), it could verify that said tables exist.
181194 ** The xConnect() and xCreate() methods for the virtual table. All the
181201 const char * const *argv, /* xCreate/xConnect argument array */
181211 const char * const *argv, /* xCreate/xConnect argument array */
183627 /* xConnect */ fts3ConnectMethod,
185813 ** This function does all the work for both the xConnect and xCreate methods.
185814 ** These tables have no persistent representation of their own, so xConnect
185821 const char * const *argv, /* xCreate/xConnect argument array */
186287 fts3auxConnectMethod, /* xConnect */
189575 ** This function does all the work for both the xConnect and xCreate methods.
189576 ** These tables have no persistent representation of their own, so xConnect
189588 const char * const *argv, /* xCreate/xConnect argument array */
189853 fts3tokConnectMethod, /* xConnect */
200832 jsonEachConnect, /* xConnect */
200860 jsonEachConnect, /* xConnect */
201915 ** the virtual table module xCreate() and xConnect() methods.
201935 ** Rtree virtual table module xConnect method.
204429 rtreeConnect, /* xConnect - connect to an existing table */
204602 ** This function is called from within the xConnect() or xCreate() method to
204607 ** If this function is being called as part of an xConnect(), then the rtree
204619 int isCreate, /* True for xCreate, false for xConnect */
204665 ** This function is the implementation of both the xConnect and xCreate
204679 int isCreate /* True for xCreate, false for xConnect */
206563 ** This function is the implementation of both the xConnect and xCreate
206577 int isCreate /* True for xCreate, false for xConnect */
206666 ** GEOPOLY virtual table module xConnect method.
207091 geopolyConnect, /* xConnect - connect to an existing table */
215057 statConnect, /* xConnect */
215485 dbpageConnect, /* xConnect */
225915 ** or xConnect method of the virtual table. This function attempts to
237174 ** This function is the implementation of both the xConnect and xCreate
237185 int bCreate, /* True for xCreate, false for xConnect */
237189 const char * const *argv, /* xCreate/xConnect argument array */
237247 ** The xConnect() and xCreate() methods for the virtual table. All the
237254 const char * const *argv, /* xCreate/xConnect argument array */
237264 const char * const *argv, /* xCreate/xConnect argument array */
239646 /* xConnect */ fts5ConnectMethod,
243613 ** This function is the implementation of both the xConnect and xCreate
243637 const char * const *argv, /* xCreate/xConnect argument array */
243692 ** The xConnect() and xCreate() methods for the virtual table. All the
243699 const char * const *argv, /* xCreate/xConnect argument array */
243709 const char * const *argv, /* xCreate/xConnect argument array */
244229 /* xConnect */ fts5VocabConnectMethod,
244548 stmtConnect, /* xConnect */