Home | History | Annotate | Download | only in amalgamation

Lines Matching defs:sqlite3_prepare

2659 ** by [sqlite3_prepare()] or its variants [sqlite3_prepare_v2()],
2696 ** An authorizer is used when [sqlite3_prepare | preparing]
2704 ** user-entered SQL is being [sqlite3_prepare | prepared] that
2728 ** [sqlite3_prepare()] or its variants. Authorization is not
3149 ** as either UTF-8 or UTF-16. The sqlite3_prepare() and sqlite3_prepare_v2()
3176 ** ^On success, the sqlite3_prepare() family of routines return [SQLITE_OK];
3217 SQLITE_API int sqlite3_prepare(
3632 ** interfaces [sqlite3_prepare()] or [sqlite3_prepare16()], this function
3638 ** interface [sqlite3_prepare()] and [sqlite3_prepare16()]. The use of the
3700 ** of the legacy [sqlite3_prepare()] and [sqlite3_prepare16()] interfaces,
9220 VTable *pDisconnect; /* Disconnect these in next sqlite3_prepare() */
9554 ** When an sqlite3_prepare() operation is required to access the virtual
12471 ** The "sqlite3_stmt" structure pointer that is returned by sqlite3_prepare()
20364 ** compiling an SQL statement (i.e. within sqlite3_prepare()). The
20365 ** last thing the sqlite3_prepare() function does is copy the error
60358 ** that sqlite3_prepare() generates. For example, if new functions or
60777 ** sqlite3_prepare() interface. According to the docs, this can only
61619 ** the first argument to the sqlite3_prepare() that was used to create
75972 rc = sqlite3_prepare(db, zSql, -1, &pStmt, 0);
86369 rc = sqlite3_prepare(db, zSql, -1, &pStmt, &zLeftover);
86790 #define sqlite3_prepare sqlite3_api->prepare
87092 sqlite3_prepare,
89075 ** This file contains the implementation of the sqlite3_prepare()
89140 TESTONLY(int rcp); /* Return code from sqlite3_prepare() */
89146 TESTONLY(rcp = ) sqlite3_prepare(db, argv[2], -1, &pStmt, 0);
89408 ** current sqlite3_prepare() operation will fail, but the following one
89815 SQLITE_API int sqlite3_prepare(
89854 ** encoded string to UTF-8, then invoking sqlite3_prepare(). The
89873 /* If sqlite3_prepare returns a tail pointer, we calculate the
96408 if( SQLITE_OK!=sqlite3_prepare(db, zSql, -1, &pStmt, 0) ){
96425 rc = sqlite3_prepare(db, zSql, -1, &pStmt, 0);
113689 rc = sqlite3_prepare(p->db, zSql, -1, &pStmt, 0);