Lines Matching refs:sqlite3_prepare
2597 ** by [sqlite3_prepare()] or its variants [sqlite3_prepare_v2()],
2634 ** An authorizer is used when [sqlite3_prepare | preparing]
2642 ** user-entered SQL is being [sqlite3_prepare | prepared] that
2666 ** [sqlite3_prepare()] or its variants. Authorization is not
3087 ** as either UTF-8 or UTF-16. The sqlite3_prepare() and sqlite3_prepare_v2()
3114 ** ^On success, the sqlite3_prepare() family of routines return [SQLITE_OK];
3155 SQLITE_API int sqlite3_prepare(
3549 ** interfaces [sqlite3_prepare()] or [sqlite3_prepare16()], this function
3555 ** interface [sqlite3_prepare()] and [sqlite3_prepare16()]. The use of the
3613 ** of the legacy [sqlite3_prepare()] and [sqlite3_prepare16()] interfaces,
8998 VTable *pDisconnect; /* Disconnect these in next sqlite3_prepare() */
9331 ** When an sqlite3_prepare() operation is required to access the virtual
20096 ** compiling an SQL statement (i.e. within sqlite3_prepare()). The
20097 ** last thing the sqlite3_prepare() function does is copy the error
58492 ** that sqlite3_prepare() generates. For example, if new functions or
58890 ** sqlite3_prepare() interface. According to the docs, this can only
59730 ** the first argument to the sqlite3_prepare() that was used to create
73990 rc = sqlite3_prepare(db, zSql, -1, &pStmt, 0);
84307 rc = sqlite3_prepare(db, zSql, -1, &pStmt, &zLeftover);
84728 #define sqlite3_prepare sqlite3_api->prepare
85025 sqlite3_prepare,
86991 ** This file contains the implementation of the sqlite3_prepare()
87056 TESTONLY(int rcp); /* Return code from sqlite3_prepare() */
87062 TESTONLY(rcp = ) sqlite3_prepare(db, argv[2], -1, &pStmt, 0);
87325 ** current sqlite3_prepare() operation will fail, but the following one
87733 SQLITE_API int sqlite3_prepare(
87772 ** encoded string to UTF-8, then invoking sqlite3_prepare(). The
87791 /* If sqlite3_prepare returns a tail pointer, we calculate the
94275 if( SQLITE_OK!=sqlite3_prepare(db, zSql, -1, &pStmt, 0) ){
94292 rc = sqlite3_prepare(db, zSql, -1, &pStmt, 0);
108985 rc = sqlite3_prepare(p->db, zSql, -1, &pStmt, 0);