Home | History | Annotate | Download | only in orig

Lines Matching defs:sqlite3_prepare

3779 ** by [sqlite3_prepare()] or its variants [sqlite3_prepare_v2()],
3823 ** An authorizer is used when [sqlite3_prepare | preparing]
3831 ** user-entered SQL is being [sqlite3_prepare | prepared] that
3855 ** [sqlite3_prepare()] or its variants. Authorization is not
4605 ** [sqlite3_prepare()] interface is legacy and should be avoided.
4619 ** as either UTF-8 or UTF-16. The sqlite3_prepare(), sqlite3_prepare_v2(),
4646 ** ^On success, the sqlite3_prepare() family of routines return [SQLITE_OK];
4651 ** The older interfaces (sqlite3_prepare() and sqlite3_prepare16())
4694 SQLITE_API int sqlite3_prepare(
5235 ** interfaces [sqlite3_prepare()] or [sqlite3_prepare16()], this function
5242 ** interfaces [sqlite3_prepare()] and [sqlite3_prepare16()]. The use of the
5306 ** of the legacy [sqlite3_prepare()] and [sqlite3_prepare16()] interfaces,
15305 VTable *pDisconnect; /* Disconnect these in next sqlite3_prepare() */
15729 ** When an sqlite3_prepare() operation is required to access the virtual
18979 ** The "sqlite3_stmt" structure pointer that is returned by sqlite3_prepare()
28673 ** compiling an SQL statement (i.e. within sqlite3_prepare()). The
28674 ** last thing the sqlite3_prepare() function does is copy the error
77729 ** that sqlite3_prepare() generates. For example, if new functions or
78362 ** sqlite3_prepare() interface. According to the docs, this can only
79330 ** the first argument to the sqlite3_prepare() that was used to create
94492 ** sqlite3_prepare() causes an error */
100547 rc = sqlite3_prepare(db, zSql, -1, &pStmt, 0);
100603 rc = sqlite3_prepare(db, zSql, -1, &pStmt, 0);
113666 #define sqlite3_prepare sqlite3_api->prepare
114047 sqlite3_prepare,
117796 ** This file contains the implementation of the sqlite3_prepare()
117862 TESTONLY(int rcp); /* Return code from sqlite3_prepare() */
117868 TESTONLY(rcp = ) sqlite3_prepare(db, argv[2], -1, &pStmt, 0);
118104 ** current sqlite3_prepare() operation will fail, but the following one
118527 SQLITE_API int sqlite3_prepare(
118594 ** encoded string to UTF-8, then invoking sqlite3_prepare(). The
118621 /* If sqlite3_prepare returns a tail pointer, we calculate the
137176 ** general-purpose query planner, and thereby yield faster sqlite3_prepare()
149515 rc = sqlite3_prepare(p->db, zSql, -1, &pStmt, 0);
149852 rc = sqlite3_prepare(db, zSql, -1, &pStmt, 0);
180192 rc = sqlite3_prepare(pSession->db, zStmt, -1, &pStmt, 0);
180230 rc = sqlite3_prepare(pSession->db, zStmt, -1, &pStmt, 0);