Lines Matching defs:sqlite3_prepare

2940 ** by [sqlite3_prepare()] or its variants [sqlite3_prepare_v2()],
2977 ** An authorizer is used when [sqlite3_prepare | preparing]
2985 ** user-entered SQL is being [sqlite3_prepare | prepared] that
3009 ** [sqlite3_prepare()] or its variants. Authorization is not
3601 ** as either UTF-8 or UTF-16. The sqlite3_prepare() and sqlite3_prepare_v2()
3629 ** ^On success, the sqlite3_prepare() family of routines return [SQLITE_OK];
3671 SQLITE_API int sqlite3_prepare(
4118 ** interfaces [sqlite3_prepare()] or [sqlite3_prepare16()], this function
4124 ** interface [sqlite3_prepare()] and [sqlite3_prepare16()]. The use of the
4186 ** of the legacy [sqlite3_prepare()] and [sqlite3_prepare16()] interfaces,
10111 VTable *pDisconnect; /* Disconnect these in next sqlite3_prepare() */
10445 ** When an sqlite3_prepare() operation is required to access the virtual
13539 ** The "sqlite3_stmt" structure pointer that is returned by sqlite3_prepare()
21373 ** compiling an SQL statement (i.e. within sqlite3_prepare()). The
21374 ** last thing the sqlite3_prepare() function does is copy the error
63224 ** that sqlite3_prepare() generates. For example, if new functions or
63637 ** sqlite3_prepare() interface. According to the docs, this can only
64453 ** the first argument to the sqlite3_prepare() that was used to create
81188 rc = sqlite3_prepare(db, zSql, -1, &pStmt, 0);
81220 rc = sqlite3_prepare(db, zSql, -1, &pStmt, 0);
92523 #define sqlite3_prepare sqlite3_api->prepare
92855 sqlite3_prepare,
95215 ** This file contains the implementation of the sqlite3_prepare()
95280 TESTONLY(int rcp); /* Return code from sqlite3_prepare() */
95286 TESTONLY(rcp = ) sqlite3_prepare(db, argv[2], -1, &pStmt, 0);
95557 ** current sqlite3_prepare() operation will fail, but the following one
95964 SQLITE_API int sqlite3_prepare(
96003 ** encoded string to UTF-8, then invoking sqlite3_prepare(). The
96022 /* If sqlite3_prepare returns a tail pointer, we calculate the
102963 if( SQLITE_OK!=sqlite3_prepare(db, zSql, -1, &pStmt, 0) ){
102980 rc = sqlite3_prepare(db, zSql, -1, &pStmt, 0);
119965 rc = sqlite3_prepare(p->db, zSql, -1, &pStmt, 0);
120290 rc = sqlite3_prepare(db, zSql, -1, &pStmt, 0);