Lines Matching defs:sqlite3_prepare

2534 ** by [sqlite3_prepare()] or its variants [sqlite3_prepare_v2()],
2571 ** An authorizer is used when [sqlite3_prepare | preparing]
2579 ** user-entered SQL is being [sqlite3_prepare | prepared] that
2603 ** [sqlite3_prepare()] or its variants. Authorization is not
3222 ** as either UTF-8 or UTF-16. The sqlite3_prepare() and sqlite3_prepare_v2()
3250 ** ^On success, the sqlite3_prepare() family of routines return [SQLITE_OK];
3291 SQLITE_API int sqlite3_prepare(
3738 ** interfaces [sqlite3_prepare()] or [sqlite3_prepare16()], this function
3744 ** interface [sqlite3_prepare()] and [sqlite3_prepare16()]. The use of the
3806 ** of the legacy [sqlite3_prepare()] and [sqlite3_prepare16()] interfaces,
10511 VTable *pDisconnect; /* Disconnect these in next sqlite3_prepare() */
10877 ** When an sqlite3_prepare() operation is required to access the virtual
14159 ** The "sqlite3_stmt" structure pointer that is returned by sqlite3_prepare()
22398 ** compiling an SQL statement (i.e. within sqlite3_prepare()). The
22399 ** last thing the sqlite3_prepare() function does is copy the error
66289 ** that sqlite3_prepare() generates. For example, if new functions or
66743 ** sqlite3_prepare() interface. According to the docs, this can only
67571 ** the first argument to the sqlite3_prepare() that was used to create
85077 rc = sqlite3_prepare(db, zSql, -1, &pStmt, 0);
85133 rc = sqlite3_prepare(db, zSql, -1, &pStmt, 0);
97337 #define sqlite3_prepare sqlite3_api->prepare
97672 sqlite3_prepare,
100595 ** This file contains the implementation of the sqlite3_prepare()
100660 TESTONLY(int rcp); /* Return code from sqlite3_prepare() */
100666 TESTONLY(rcp = ) sqlite3_prepare(db, argv[2], -1, &pStmt, 0);
100937 ** current sqlite3_prepare() operation will fail, but the following one
101356 SQLITE_API int sqlite3_prepare(
101395 ** encoded string to UTF-8, then invoking sqlite3_prepare(). The
101420 /* If sqlite3_prepare returns a tail pointer, we calculate the
109022 if( SQLITE_OK!=sqlite3_prepare(db, zSql, -1, &pStmt, 0) ){
109039 rc = sqlite3_prepare(db, zSql, -1, &pStmt, 0);
116702 ** general-purpose query planner, and thereby yield faster sqlite3_prepare()
127549 rc = sqlite3_prepare(p->db, zSql, -1, &pStmt, 0);
127874 rc = sqlite3_prepare(db, zSql, -1, &pStmt, 0);