Searched refs:zSql (Results 1 – 8 of 8) sorted by relevance
/external/sqlite/dist/ |
D | shell.c | 1061 const char *zSql, /* SQL to be evaluated */ in shell_exec() argument 1075 while( zSql[0] && (SQLITE_OK == rc) ){ in shell_exec() 1076 rc = sqlite3_prepare_v2(db, zSql, -1, &pStmt, &zLeftover); in shell_exec() 1084 zSql = zLeftover; in shell_exec() 1085 while( isspace(zSql[0]) ) zSql++; in shell_exec() 1098 fprintf(pArg->out, "%s\n", zStmtSql ? zStmtSql : zSql); in shell_exec() 1164 zSql = zLeftover; in shell_exec() 1165 while( isspace(zSql[0]) ) zSql++; in shell_exec() 1191 const char *zSql; in dump_callback() local 1199 zSql = azArg[2]; in dump_callback() [all …]
|
D | shell.c.orig | 1056 const char *zSql, /* SQL to be evaluated */ 1070 while( zSql[0] && (SQLITE_OK == rc) ){ 1071 rc = sqlite3_prepare_v2(db, zSql, -1, &pStmt, &zLeftover); 1079 zSql = zLeftover; 1080 while( isspace(zSql[0]) ) zSql++; 1093 fprintf(pArg->out, "%s\n", zStmtSql ? zStmtSql : zSql); 1155 ** copy of the error message. Otherwise, set zSql to point to the 1159 zSql = zLeftover; 1160 while( isspace(zSql[0]) ) zSql++; 1186 const char *zSql; [all …]
|
D | sqlite3.h | 1827 const char *zSql, /* SQL to be evaluated */ 2617 const char *zSql, /* SQL statement, UTF-8 encoded */ 2624 const char *zSql, /* SQL statement, UTF-8 encoded */ 2631 const void *zSql, /* SQL statement, UTF-16 encoded */ 2638 const void *zSql, /* SQL statement, UTF-16 encoded */
|
D | sqlite3.c | 2374 const char *zSql, /* SQL to be evaluated */ 3164 const char *zSql, /* SQL statement, UTF-8 encoded */ 3171 const char *zSql, /* SQL statement, UTF-8 encoded */ 3178 const void *zSql, /* SQL statement, UTF-16 encoded */ 3185 const void *zSql, /* SQL statement, UTF-16 encoded */ 12305 char *zSql; /* Text of the SQL statement that generated this */ member 55374 assert( p->zSql==0 ); 55375 p->zSql = sqlite3DbStrNDup(p->db, z, n); 55384 return (p && p->isPrepareV2) ? p->zSql : 0; 55402 zTmp = pA->zSql; [all …]
|
D | sqlite3.h.orig | 1824 const char *zSql, /* SQL to be evaluated */ 2543 ** The second argument, "zSql", is the statement to be compiled, encoded 2548 ** ^If the nByte argument is less than zero, then zSql is read up to the 2550 ** number of bytes read from zSql. ^When nByte is non-negative, the 2551 ** zSql string ends at either the first '\000' or '\u0000' character or 2559 ** past the end of the first SQL statement in zSql. These routines only 2560 ** compile the first statement in zSql, so *pzTail is left pointing to 2614 const char *zSql, /* SQL statement, UTF-8 encoded */ 2615 int nByte, /* Maximum length of zSql in bytes. */ 2617 const char **pzTail /* OUT: Pointer to unused portion of zSql */ [all …]
|
D | sqlite3.c.orig | 2367 const char *zSql, /* SQL to be evaluated */ 3086 ** The second argument, "zSql", is the statement to be compiled, encoded 3091 ** ^If the nByte argument is less than zero, then zSql is read up to the 3093 ** number of bytes read from zSql. ^When nByte is non-negative, the 3094 ** zSql string ends at either the first '\000' or '\u0000' character or 3102 ** past the end of the first SQL statement in zSql. These routines only 3103 ** compile the first statement in zSql, so *pzTail is left pointing to 3157 const char *zSql, /* SQL statement, UTF-8 encoded */ 3158 int nByte, /* Maximum length of zSql in bytes. */ 3160 const char **pzTail /* OUT: Pointer to unused portion of zSql */ [all …]
|
/external/webkit/WebKitLibraries/WebCoreSQLite3/ |
D | sqlite3.h | 1532 const char *zSql, /* SQL to be evaluated */ 2300 const char *zSql, /* SQL statement, UTF-8 encoded */ 2307 const char *zSql, /* SQL statement, UTF-8 encoded */ 2314 const void *zSql, /* SQL statement, UTF-16 encoded */ 2321 const void *zSql, /* SQL statement, UTF-16 encoded */
|
/external/webkit/Source/WebCore/platform/sql/ |
D | SQLiteStatement.cpp | 42 static inline int sqlite3_prepare16_v2(sqlite3* db, const void* zSql, int nBytes, sqlite3_stmt** pp… in sqlite3_prepare16_v2() argument 44 return sqlite3_prepare16(db, zSql, nBytes, ppStmt, pzTail); in sqlite3_prepare16_v2()
|