Searched refs:zSql (Results 1 - 5 of 5) sorted by relevance

/freebsd-10.1-release/contrib/sqlite3/
H A Dshell.c1128 const char *zSql, /* SQL to be evaluated */
1143 while( zSql[0] && (SQLITE_OK == rc) ){
1144 rc = sqlite3_prepare_v2(db, zSql, -1, &pStmt, &zLeftover);
1152 zSql = zLeftover;
1153 while( IsSpace(zSql[0]) ) zSql++;
1166 fprintf(pArg->out, "%s\n", zStmtSql ? zStmtSql : zSql);
1237 ** copy of the error message. Otherwise, set zSql to point to the
1242 zSql = zLeftover;
1243 while( IsSpace(zSql[
1126 shell_exec( sqlite3 *db, const char *zSql, int (*xCallback)(void*,int,char**,char**,int*), struct callback_data *pArg, char **pzErrMsg ) argument
1269 const char *zSql; local
1870 char *zSql; /* An SQL statement */ local
2343 char *zSql = 0; local
2663 _is_complete(char *zSql, int nSql) argument
2684 char *zSql = 0; local
[all...]
H A Dsqlite3.h2136 const char *zSql, /* SQL to be evaluated */
3029 ** The second argument, "zSql", is the statement to be compiled, encoded
3034 ** ^If the nByte argument is less than zero, then zSql is read up to the
3036 ** number of bytes read from zSql. ^When nByte is non-negative, the
3037 ** zSql string ends at either the first '\000' or '\u0000' character or
3046 ** past the end of the first SQL statement in zSql. These routines only
3047 ** compile the first statement in zSql, so *pzTail is left pointing to
3102 const char *zSql, /* SQL statement, UTF-8 encoded */
3103 int nByte, /* Maximum length of zSql in bytes. */
3105 const char **pzTail /* OUT: Pointer to unused portion of zSql */
[all...]
H A Dsqlite3.c2707 const char *zSql, /* SQL to be evaluated */
3600 ** The second argument, "zSql", is the statement to be compiled, encoded
3605 ** ^If the nByte argument is less than zero, then zSql is read up to the
3607 ** number of bytes read from zSql. ^When nByte is non-negative, the
3608 ** zSql string ends at either the first '\000' or '\u0000' character or
3617 ** past the end of the first SQL statement in zSql. These routines only
3618 ** compile the first statement in zSql, so *pzTail is left pointing to
3673 const char *zSql, /* SQL statement, UTF-8 encoded */
3674 int nByte, /* Maximum length of zSql in bytes. */
3676 const char **pzTail /* OUT: Pointer to unused portion of zSql */
13596 char *zSql; /* Text of the SQL statement that generated this */ member in struct:Vdbe
64532 findNextHostParameter(const char *zSql, int *pnToken) argument
65771 char *zSql; member in struct:vdbeExecUnion::OP_ParseSchema_stack_vars
79457 unsigned char const *zSql = sqlite3_value_text(argv[0]); local
79577 unsigned char const *zSql = sqlite3_value_text(argv[0]); local
81171 char *zSql; /* Text of the SQL statement */ local
81315 char *zSql; local
82413 char *zSql; local
92044 sqlite3_exec( sqlite3 *db, const char *zSql, sqlite3_callback xCallback, void *pArg, char **pzErrMsg ) argument
95527 char *zSql; local
95732 sqlite3Prepare( sqlite3 *db, const char *zSql, int nBytes, int saveSqlFlag, Vdbe *pReprepare, sqlite3_stmt **ppStmt, const char **pzTail ) argument
95891 sqlite3LockAndPrepare( sqlite3 *db, const char *zSql, int nBytes, int saveSqlFlag, Vdbe *pOld, sqlite3_stmt **ppStmt, const char **pzTail ) argument
95930 const char *zSql; local
95964 sqlite3_prepare( sqlite3 *db, const char *zSql, int nBytes, sqlite3_stmt **ppStmt, const char **pzTail ) argument
95976 sqlite3_prepare_v2( sqlite3 *db, const char *zSql, int nBytes, sqlite3_stmt **ppStmt, const char **pzTail ) argument
95994 sqlite3Prepare16( sqlite3 *db, const void *zSql, int nBytes, int saveSqlFlag, sqlite3_stmt **ppStmt, const void **pzTail ) argument
96044 sqlite3_prepare16( sqlite3 *db, const void *zSql, int nBytes, sqlite3_stmt **ppStmt, const void **pzTail ) argument
96056 sqlite3_prepare16_v2( sqlite3 *db, const void *zSql, int nBytes, sqlite3_stmt **ppStmt, const void **pzTail ) argument
101028 sqlite3_get_table( sqlite3 *db, const char *zSql, char ***pazResult, int *pnRow, int *pnColumn, char **pzErrMsg ) argument
102957 execSql(sqlite3 *db, char **pzErrMsg, const char *zSql) argument
102976 execExecSql(sqlite3 *db, char **pzErrMsg, const char *zSql) argument
103020 char *zSql = 0; /* SQL statements */ local
114267 sqlite3RunParser(Parse *pParse, const char *zSql, char **pzErrMsg) argument
114512 sqlite3_complete(const char *zSql) argument
114670 sqlite3_complete16(const void *zSql) argument
119787 char *zSql; local
119839 char *zSql; /* SQL statement passed to declare_vtab() */ local
119958 char *zSql; /* SQL text "PRAGMA %Q.page_size" */ local
120283 char *zSql; /* "SELECT *" statement on zTbl */ local
120841 char *zSql; local
122238 char *zSql; /* SQL statement used to access %_content */ local
126229 const char zSql[] = "SELECT fts3_tokenizer(?)"; local
127783 const char zSql[] = "SELECT fts3_tokenizer(?, ?)"; local
127805 const char zSql[] = "SELECT fts3_tokenizer(?)"; local
129013 char *zSql; local
131911 char *zSql = sqlite3_mprintf("SELECT %s" , p->zReadExprlist); local
133556 char *zSql; local
139226 char *zSql = sqlite3_mprintf( local
139327 char *zSql = sqlite3_mprintf(azSql[i], zDb, zPrefix); local
139346 getIntFromStmt(sqlite3 *db, const char *zSql, int *piVal) argument
139383 char *zSql; local
139478 char *zSql = sqlite3_mprintf("CREATE TABLE x(%s", argv[3]); local
[all...]
/freebsd-10.1-release/crypto/heimdal/lib/sqlite/
H A Dsqlite3.h1937 const char *zSql, /* SQL to be evaluated */
2789 ** The second argument, "zSql", is the statement to be compiled, encoded
2794 ** ^If the nByte argument is less than zero, then zSql is read up to the
2796 ** number of bytes read from zSql. ^When nByte is non-negative, the
2797 ** zSql string ends at either the first '\000' or '\u0000' character or
2805 ** past the end of the first SQL statement in zSql. These routines only
2806 ** compile the first statement in zSql, so *pzTail is left pointing to
2860 const char *zSql, /* SQL statement, UTF-8 encoded */
2861 int nByte, /* Maximum length of zSql in bytes. */
2863 const char **pzTail /* OUT: Pointer to unused portion of zSql */
[all...]
H A Dsqlite3.c2490 const char *zSql, /* SQL to be evaluated */
3342 ** The second argument, "zSql", is the statement to be compiled, encoded
3347 ** ^If the nByte argument is less than zero, then zSql is read up to the
3349 ** number of bytes read from zSql. ^When nByte is non-negative, the
3350 ** zSql string ends at either the first '\000' or '\u0000' character or
3358 ** past the end of the first SQL statement in zSql. These routines only
3359 ** compile the first statement in zSql, so *pzTail is left pointing to
3413 const char *zSql, /* SQL statement, UTF-8 encoded */
3414 int nByte, /* Maximum length of zSql in bytes. */
3416 const char **pzTail /* OUT: Pointer to unused portion of zSql */
12863 char *zSql; /* Text of the SQL statement that generated this */ member in struct:Vdbe
62878 findNextHostParameter(const char *zSql, int *pnToken) argument
63978 char *zSql; member in struct:vdbeExecUnion::OP_ParseSchema_stack_vars
76819 unsigned char const *zSql = sqlite3_value_text(argv[0]); local
76939 unsigned char const *zSql = sqlite3_value_text(argv[0]); local
78209 char *zSql; local
79367 char *zSql; local
88755 sqlite3_exec( sqlite3 *db, const char *zSql, sqlite3_callback xCallback, void *pArg, char **pzErrMsg ) argument
91803 char *zSql; local
92008 sqlite3Prepare( sqlite3 *db, const char *zSql, int nBytes, int saveSqlFlag, Vdbe *pReprepare, sqlite3_stmt **ppStmt, const char **pzTail ) argument
92168 sqlite3LockAndPrepare( sqlite3 *db, const char *zSql, int nBytes, int saveSqlFlag, Vdbe *pOld, sqlite3_stmt **ppStmt, const char **pzTail ) argument
92206 const char *zSql; local
92240 sqlite3_prepare( sqlite3 *db, const char *zSql, int nBytes, sqlite3_stmt **ppStmt, const char **pzTail ) argument
92252 sqlite3_prepare_v2( sqlite3 *db, const char *zSql, int nBytes, sqlite3_stmt **ppStmt, const char **pzTail ) argument
92270 sqlite3Prepare16( sqlite3 *db, const void *zSql, int nBytes, int saveSqlFlag, sqlite3_stmt **ppStmt, const void **pzTail ) argument
92320 sqlite3_prepare16( sqlite3 *db, const void *zSql, int nBytes, sqlite3_stmt **ppStmt, const void **pzTail ) argument
92332 sqlite3_prepare16_v2( sqlite3 *db, const void *zSql, int nBytes, sqlite3_stmt **ppStmt, const void **pzTail ) argument
97053 sqlite3_get_table( sqlite3 *db, const char *zSql, char ***pazResult, int *pnRow, int *pnColumn, char **pzErrMsg ) argument
98967 execSql(sqlite3 *db, char **pzErrMsg, const char *zSql) argument
98986 execExecSql(sqlite3 *db, char **pzErrMsg, const char *zSql) argument
99029 char *zSql = 0; /* SQL statements */ local
109630 sqlite3RunParser(Parse *pParse, const char *zSql, char **pzErrMsg) argument
109875 sqlite3_complete(const char *zSql) argument
110033 sqlite3_complete16(const void *zSql) argument
114710 char *zSql; local
114759 char *zSql; /* SQL statement passed to declare_vtab() */ local
114857 char *zSql; /* SQL text "PRAGMA %Q.page_size" */ local
116872 char *zSql; /* SQL statement used to access %_content */ local
120334 const char zSql[] = "SELECT fts3_tokenizer(?)"; local
121865 const char zSql[] = "SELECT fts3_tokenizer(?, ?)"; local
121887 const char zSql[] = "SELECT fts3_tokenizer(?)"; local
122556 char *zSql; local
129865 char *zSql = sqlite3_mprintf( local
129966 char *zSql = sqlite3_mprintf(azSql[i], zDb, zPrefix); local
129985 getIntFromStmt(sqlite3 *db, const char *zSql, int *piVal) argument
130021 char *zSql; local
130111 char *zSql = sqlite3_mprintf("CREATE TABLE x(%s", argv[3]); local
[all...]

Completed in 450 milliseconds