Lines Matching refs:sqlite3_prepare

2723 ** by [sqlite3_prepare()] or its variants [sqlite3_prepare_v2()],
2760 ** An authorizer is used when [sqlite3_prepare | preparing]
2768 ** user-entered SQL is being [sqlite3_prepare | prepared] that
2792 ** [sqlite3_prepare()] or its variants. Authorization is not
3343 ** as either UTF-8 or UTF-16. The sqlite3_prepare() and sqlite3_prepare_v2()
3370 ** ^On success, the sqlite3_prepare() family of routines return [SQLITE_OK];
3411 SQLITE_API int sqlite3_prepare(
3826 ** interfaces [sqlite3_prepare()] or [sqlite3_prepare16()], this function
3832 ** interface [sqlite3_prepare()] and [sqlite3_prepare16()]. The use of the
3894 ** of the legacy [sqlite3_prepare()] and [sqlite3_prepare16()] interfaces,
9523 VTable *pDisconnect; /* Disconnect these in next sqlite3_prepare() */
9859 ** When an sqlite3_prepare() operation is required to access the virtual
12806 ** The "sqlite3_stmt" structure pointer that is returned by sqlite3_prepare()
20759 ** compiling an SQL statement (i.e. within sqlite3_prepare()). The
20760 ** last thing the sqlite3_prepare() function does is copy the error
61568 ** that sqlite3_prepare() generates. For example, if new functions or
61987 ** sqlite3_prepare() interface. According to the docs, this can only
62809 ** the first argument to the sqlite3_prepare() that was used to create
78255 rc = sqlite3_prepare(db, zSql, -1, &pStmt, 0);
88779 rc = sqlite3_prepare(db, zSql, -1, &pStmt, &zLeftover);
89203 #define sqlite3_prepare sqlite3_api->prepare
89512 sqlite3_prepare,
91500 ** This file contains the implementation of the sqlite3_prepare()
91565 TESTONLY(int rcp); /* Return code from sqlite3_prepare() */
91571 TESTONLY(rcp = ) sqlite3_prepare(db, argv[2], -1, &pStmt, 0);
91833 ** current sqlite3_prepare() operation will fail, but the following one
92240 SQLITE_API int sqlite3_prepare(
92279 ** encoded string to UTF-8, then invoking sqlite3_prepare(). The
92298 /* If sqlite3_prepare returns a tail pointer, we calculate the
98973 if( SQLITE_OK!=sqlite3_prepare(db, zSql, -1, &pStmt, 0) ){
98990 rc = sqlite3_prepare(db, zSql, -1, &pStmt, 0);
114864 rc = sqlite3_prepare(p->db, zSql, -1, &pStmt, 0);