Searched refs:zSql (Results 26 - 44 of 44) sorted by relevance

12

/external/chromium_org/third_party/sqlite/src/src/
H A Drecover.c494 char *zSql; /* SQL selecting root page of named element. */ local
503 zSql = sqlite3_mprintf("SELECT rootpage FROM %s.sqlite_master "
506 if( !zSql ){
510 rc = sqlite3_prepare_v2(db, zSql, -1, &pStmt, 0);
511 sqlite3_free(zSql);
538 char *zSql = sqlite3_mprintf("PRAGMA %s.encoding", zDb); local
539 if( !zSql ){
543 rc = sqlite3_prepare_v2(db, zSql, -1, &pStmt, 0);
544 sqlite3_free(zSql);
H A Dtest_func.c298 const char *zSql; local
300 zSql = (char*)sqlite3_value_text(argv[0]);
301 rc = sqlite3_prepare_v2(db, zSql, -1, &pStmt, 0);
H A Dsqlite.h.in1878 const char *zSql, /* SQL to be evaluated */
2600 ** The second argument, "zSql", is the statement to be compiled, encoded
2605 ** ^If the nByte argument is less than zero, then zSql is read up to the
2607 ** number of bytes read from zSql. ^When nByte is non-negative, the
2608 ** zSql string ends at either the first '\000' or '\u0000' character or
2616 ** past the end of the first SQL statement in zSql. These routines only
2617 ** compile the first statement in zSql, so *pzTail is left pointing to
2671 const char *zSql, /* SQL statement, UTF-8 encoded */
2672 int nByte, /* Maximum length of zSql in bytes. */
2674 const char **pzTail /* OUT: Pointer to unused portion of zSql */
[all...]
H A DvdbeInt.h314 char *zSql; /* Text of the SQL statement that generated this */ member in struct:Vdbe
H A Dvdbeaux.c59 assert( p->zSql==0 );
60 p->zSql = sqlite3DbStrNDup(p->db, z, n);
69 return (p && p->isPrepareV2) ? p->zSql : 0;
87 zTmp = pA->zSql;
88 pA->zSql = pB->zSql;
89 pB->zSql = zTmp;
2409 sqlite3DbFree(db, p->zSql);
H A Dvdbeapi.c421 if( rc!=SQLITE_ROW && db->xProfile && !db->init.busy && p->zSql ){
424 db->xProfile(db->pProfileArg, p->zSql, (iNow - p->startTime)*1000000);
990 "bind on a busy prepared statement: [%s]", p->zSql);
H A Dvdbe.c856 sqlite3_log(pOp->p1, "abort at %d in [%s]: %s", pc, p->zSql, pOp->p4.z);
859 sqlite3_log(pOp->p1, "constraint failed at %d in [%s]", pc, p->zSql);
4636 char *zSql; local
4657 zSql = sqlite3MPrintf(db,
4660 if( zSql==0 ){
4667 rc = sqlite3_exec(db, zSql, sqlite3InitCallback, &initData, 0);
4669 sqlite3DbFree(db, zSql);
5848 zTrace = (pOp->p4.z ? pOp->p4.z : p->zSql);
5932 pc, p->zSql, p->zErrMsg);
H A Dbuild.c233 char *zSql; local
242 zSql = sqlite3VMPrintf(db, zFormat, ap);
244 if( zSql==0 ){
250 sqlite3RunParser(pParse, zSql, &zErrMsg);
252 sqlite3DbFree(db, zSql);
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.h1883 const char *zSql, /* SQL to be evaluated */
2605 ** The second argument, "zSql", is the statement to be compiled, encoded
2610 ** ^If the nByte argument is less than zero, then zSql is read up to the
2612 ** number of bytes read from zSql. ^When nByte is non-negative, the
2613 ** zSql string ends at either the first '\000' or '\u0000' character or
2621 ** past the end of the first SQL statement in zSql. These routines only
2622 ** compile the first statement in zSql, so *pzTail is left pointing to
2676 const char *zSql, /* SQL statement, UTF-8 encoded */
2677 int nByte, /* Maximum length of zSql in bytes. */
2679 const char **pzTail /* OUT: Pointer to unused portion of zSql */
[all...]
H A Dsqlite3.c2426 const char *zSql, /* SQL to be evaluated */
3148 ** The second argument, "zSql", is the statement to be compiled, encoded
3153 ** ^If the nByte argument is less than zero, then zSql is read up to the
3155 ** number of bytes read from zSql. ^When nByte is non-negative, the
3156 ** zSql string ends at either the first '\000' or '\u0000' character or
3164 ** past the end of the first SQL statement in zSql. These routines only
3165 ** compile the first statement in zSql, so *pzTail is left pointing to
3219 const char *zSql, /* SQL statement, UTF-8 encoded */
3220 int nByte, /* Maximum length of zSql in bytes. */
3222 const char **pzTail /* OUT: Pointer to unused portion of zSql */
12528 char *zSql; /* Text of the SQL statement that generated this */ member in struct:Vdbe
61688 findNextHostParameter(const char *zSql, int *pnToken) argument
62769 char *zSql; member in struct:vdbeExecUnion::OP_ParseSchema_stack_vars
74536 unsigned char const *zSql = sqlite3_value_text(argv[0]); local
74656 unsigned char const *zSql = sqlite3_value_text(argv[0]); local
75926 char *zSql; local
77072 char *zSql; local
86345 sqlite3_exec( sqlite3 *db, const char *zSql, sqlite3_callback xCallback, void *pArg, char **pzErrMsg ) argument
89378 char *zSql; local
89583 sqlite3Prepare( sqlite3 *db, const char *zSql, int nBytes, int saveSqlFlag, Vdbe *pReprepare, sqlite3_stmt **ppStmt, const char **pzTail ) argument
89743 sqlite3LockAndPrepare( sqlite3 *db, const char *zSql, int nBytes, int saveSqlFlag, Vdbe *pOld, sqlite3_stmt **ppStmt, const char **pzTail ) argument
89781 const char *zSql; local
89815 sqlite3_prepare( sqlite3 *db, const char *zSql, int nBytes, sqlite3_stmt **ppStmt, const char **pzTail ) argument
89827 sqlite3_prepare_v2( sqlite3 *db, const char *zSql, int nBytes, sqlite3_stmt **ppStmt, const char **pzTail ) argument
89845 sqlite3Prepare16( sqlite3 *db, const void *zSql, int nBytes, int saveSqlFlag, sqlite3_stmt **ppStmt, const void **pzTail ) argument
89895 sqlite3_prepare16( sqlite3 *db, const void *zSql, int nBytes, sqlite3_stmt **ppStmt, const void **pzTail ) argument
89907 sqlite3_prepare16_v2( sqlite3 *db, const void *zSql, int nBytes, sqlite3_stmt **ppStmt, const void **pzTail ) argument
94505 sqlite3_get_table( sqlite3 *db, const char *zSql, char ***pazResult, int *pnRow, int *pnColumn, char **pzErrMsg ) argument
96402 execSql(sqlite3 *db, char **pzErrMsg, const char *zSql) argument
96421 execExecSql(sqlite3 *db, char **pzErrMsg, const char *zSql) argument
96464 char *zSql = 0; /* SQL statements */ local
106731 sqlite3RunParser(Parse *pParse, const char *zSql, char **pzErrMsg) argument
106976 sqlite3_complete(const char *zSql) argument
107134 sqlite3_complete16(const void *zSql) argument
110740 char *zSql; /* SQL selecting root page of named element. */ local
110784 char *zSql = sqlite3_mprintf("PRAGMA %s.encoding", zDb); local
113526 char *zSql; local
113575 char *zSql; /* SQL statement passed to declare_vtab() */ local
113671 char *zSql; /* SQL text "PRAGMA %Q.page_size" */ local
116101 char *zSql; /* SQL statement used to access %_content */ local
117993 const char zSql[] = "SELECT fts3_tokenizer(?)"; local
119518 const char zSql[] = "SELECT fts3_tokenizer(?, ?)"; local
119540 const char zSql[] = "SELECT fts3_tokenizer(?)"; local
120153 char *zSql; local
127056 char *zSql = sqlite3_mprintf( local
127154 char *zSql = sqlite3_mprintf(azSql[i], zDb, zPrefix); local
127173 getIntFromStmt(sqlite3 *db, const char *zSql, int *piVal) argument
127209 char *zSql; local
127297 char *zSql = sqlite3_mprintf("CREATE TABLE x(%s", argv[3]); local
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.h2184 const char *zSql, /* SQL to be evaluated */
3106 ** The second argument, "zSql", is the statement to be compiled, encoded
3111 ** ^If the nByte argument is less than zero, then zSql is read up to the
3113 ** number of bytes read from zSql. ^When nByte is non-negative, the
3114 ** zSql string ends at either the first '\000' or '\u0000' character or
3123 ** past the end of the first SQL statement in zSql. These routines only
3124 ** compile the first statement in zSql, so *pzTail is left pointing to
3178 const char *zSql, /* SQL statement, UTF-8 encoded */
3179 int nByte, /* Maximum length of zSql in bytes. */
3181 const char **pzTail /* OUT: Pointer to unused portion of zSql */
[all...]
H A Dsqlite3.c2299 const char *zSql, /* SQL to be evaluated */
3221 ** The second argument, "zSql", is the statement to be compiled, encoded
3226 ** ^If the nByte argument is less than zero, then zSql is read up to the
3228 ** number of bytes read from zSql. ^When nByte is non-negative, the
3229 ** zSql string ends at either the first '\000' or '\u0000' character or
3238 ** past the end of the first SQL statement in zSql. These routines only
3239 ** compile the first statement in zSql, so *pzTail is left pointing to
3293 const char *zSql, /* SQL statement, UTF-8 encoded */
3294 int nByte, /* Maximum length of zSql in bytes. */
3296 const char **pzTail /* OUT: Pointer to unused portion of zSql */
14217 char *zSql; /* Text of the SQL statement that generated this */ member in struct:Vdbe
67630 findNextHostParameter(const char *zSql, int *pnToken) argument
73096 char *zSql; local
82622 unsigned char const *zSql = sqlite3_value_text(argv[0]); local
82743 unsigned char const *zSql = sqlite3_value_text(argv[0]); local
85048 char *zSql; /* Text of the SQL statement */ local
85210 char *zSql; local
86341 char *zSql; local
96835 sqlite3_exec( sqlite3 *db, const char *zSql, sqlite3_callback xCallback, void *pArg, char **pzErrMsg ) argument
100887 char *zSql; local
101103 sqlite3Prepare( sqlite3 *db, const char *zSql, int nBytes, int saveSqlFlag, Vdbe *pReprepare, sqlite3_stmt **ppStmt, const char **pzTail ) argument
101263 sqlite3LockAndPrepare( sqlite3 *db, const char *zSql, int nBytes, int saveSqlFlag, Vdbe *pOld, sqlite3_stmt **ppStmt, const char **pzTail ) argument
101302 const char *zSql; local
101336 sqlite3_prepare( sqlite3 *db, const char *zSql, int nBytes, sqlite3_stmt **ppStmt, const char **pzTail ) argument
101348 sqlite3_prepare_v2( sqlite3 *db, const char *zSql, int nBytes, sqlite3_stmt **ppStmt, const char **pzTail ) argument
101366 sqlite3Prepare16( sqlite3 *db, const void *zSql, int nBytes, int saveSqlFlag, sqlite3_stmt **ppStmt, const void **pzTail ) argument
101422 sqlite3_prepare16( sqlite3 *db, const void *zSql, int nBytes, sqlite3_stmt **ppStmt, const void **pzTail ) argument
101434 sqlite3_prepare16_v2( sqlite3 *db, const void *zSql, int nBytes, sqlite3_stmt **ppStmt, const void **pzTail ) argument
106977 sqlite3_get_table( sqlite3 *db, const char *zSql, char ***pazResult, int *pnRow, int *pnColumn, char **pzErrMsg ) argument
108996 execSql(sqlite3 *db, char **pzErrMsg, const char *zSql) argument
109015 execExecSql(sqlite3 *db, char **pzErrMsg, const char *zSql) argument
109079 char *zSql = 0; /* SQL statements */ local
121648 sqlite3RunParser(Parse *pParse, const char *zSql, char **pzErrMsg) argument
121893 sqlite3_complete(const char *zSql) argument
122051 sqlite3_complete16(const void *zSql) argument
127351 char *zSql; local
127403 char *zSql; /* SQL statement passed to declare_vtab() */ local
127522 char *zSql; /* SQL text "PRAGMA %Q.page_size" */ local
127847 char *zSql; /* "SELECT *" statement on zTbl */ local
128499 char *zSql; local
129923 char *zSql; /* SQL statement used to access %_content */ local
130167 char *zSql = sqlite3_mprintf(zFmt, p->zDb, p->zName); local
134281 const char zSql[] = "SELECT fts3_tokenizer(?)"; local
135851 const char zSql[] = "SELECT fts3_tokenizer(?, ?)"; local
135873 const char zSql[] = "SELECT fts3_tokenizer(?)"; local
137097 char *zSql; local
140187 char *zSql = sqlite3_mprintf("SELECT %s" , p->zReadExprlist); local
141860 char *zSql; local
147564 char *zSql = sqlite3_mprintf( local
147586 char *zSql; local
147704 char *zSql = sqlite3_mprintf(azSql[i], zDb, zPrefix); local
147723 getIntFromStmt(sqlite3 *db, const char *zSql, int *piVal) argument
147760 char *zSql; local
147855 char *zSql = sqlite3_mprintf("CREATE TABLE x(%s", argv[3]); local
[all...]
/external/sqlite/dist/
H A Dsqlite3.h2184 const char *zSql, /* SQL to be evaluated */
3106 ** The second argument, "zSql", is the statement to be compiled, encoded
3111 ** ^If the nByte argument is less than zero, then zSql is read up to the
3113 ** number of bytes read from zSql. ^When nByte is non-negative, the
3114 ** zSql string ends at either the first '\000' or '\u0000' character or
3123 ** past the end of the first SQL statement in zSql. These routines only
3124 ** compile the first statement in zSql, so *pzTail is left pointing to
3178 const char *zSql, /* SQL statement, UTF-8 encoded */
3179 int nByte, /* Maximum length of zSql in bytes. */
3181 const char **pzTail /* OUT: Pointer to unused portion of zSql */
[all...]
H A Dsqlite3.c2299 const char *zSql, /* SQL to be evaluated */
3221 ** The second argument, "zSql", is the statement to be compiled, encoded
3226 ** ^If the nByte argument is less than zero, then zSql is read up to the
3228 ** number of bytes read from zSql. ^When nByte is non-negative, the
3229 ** zSql string ends at either the first '\000' or '\u0000' character or
3238 ** past the end of the first SQL statement in zSql. These routines only
3239 ** compile the first statement in zSql, so *pzTail is left pointing to
3293 const char *zSql, /* SQL statement, UTF-8 encoded */
3294 int nByte, /* Maximum length of zSql in bytes. */
3296 const char **pzTail /* OUT: Pointer to unused portion of zSql */
14217 char *zSql; /* Text of the SQL statement that generated this */ member in struct:Vdbe
67650 findNextHostParameter(const char *zSql, int *pnToken) argument
73116 char *zSql; local
82642 unsigned char const *zSql = sqlite3_value_text(argv[0]); local
82763 unsigned char const *zSql = sqlite3_value_text(argv[0]); local
85068 char *zSql; /* Text of the SQL statement */ local
85230 char *zSql; local
86361 char *zSql; local
96855 sqlite3_exec( sqlite3 *db, const char *zSql, sqlite3_callback xCallback, void *pArg, char **pzErrMsg ) argument
100907 char *zSql; local
101123 sqlite3Prepare( sqlite3 *db, const char *zSql, int nBytes, int saveSqlFlag, Vdbe *pReprepare, sqlite3_stmt **ppStmt, const char **pzTail ) argument
101283 sqlite3LockAndPrepare( sqlite3 *db, const char *zSql, int nBytes, int saveSqlFlag, Vdbe *pOld, sqlite3_stmt **ppStmt, const char **pzTail ) argument
101322 const char *zSql; local
101356 sqlite3_prepare( sqlite3 *db, const char *zSql, int nBytes, sqlite3_stmt **ppStmt, const char **pzTail ) argument
101368 sqlite3_prepare_v2( sqlite3 *db, const char *zSql, int nBytes, sqlite3_stmt **ppStmt, const char **pzTail ) argument
101386 sqlite3Prepare16( sqlite3 *db, const void *zSql, int nBytes, int saveSqlFlag, sqlite3_stmt **ppStmt, const void **pzTail ) argument
101442 sqlite3_prepare16( sqlite3 *db, const void *zSql, int nBytes, sqlite3_stmt **ppStmt, const void **pzTail ) argument
101454 sqlite3_prepare16_v2( sqlite3 *db, const void *zSql, int nBytes, sqlite3_stmt **ppStmt, const void **pzTail ) argument
106997 sqlite3_get_table( sqlite3 *db, const char *zSql, char ***pazResult, int *pnRow, int *pnColumn, char **pzErrMsg ) argument
109016 execSql(sqlite3 *db, char **pzErrMsg, const char *zSql) argument
109035 execExecSql(sqlite3 *db, char **pzErrMsg, const char *zSql) argument
109099 char *zSql = 0; /* SQL statements */ local
121668 sqlite3RunParser(Parse *pParse, const char *zSql, char **pzErrMsg) argument
121913 sqlite3_complete(const char *zSql) argument
122071 sqlite3_complete16(const void *zSql) argument
127371 char *zSql; local
127423 char *zSql; /* SQL statement passed to declare_vtab() */ local
127542 char *zSql; /* SQL text "PRAGMA %Q.page_size" */ local
127867 char *zSql; /* "SELECT *" statement on zTbl */ local
128519 char *zSql; local
129943 char *zSql; /* SQL statement used to access %_content */ local
130187 char *zSql = sqlite3_mprintf(zFmt, p->zDb, p->zName); local
134313 const char zSql[] = "SELECT fts3_tokenizer(?)"; local
135883 const char zSql[] = "SELECT fts3_tokenizer(?, ?)"; local
135905 const char zSql[] = "SELECT fts3_tokenizer(?)"; local
137129 char *zSql; local
140219 char *zSql = sqlite3_mprintf("SELECT %s" , p->zReadExprlist); local
141892 char *zSql; local
147596 char *zSql = sqlite3_mprintf( local
147618 char *zSql; local
147736 char *zSql = sqlite3_mprintf(azSql[i], zDb, zPrefix); local
147755 getIntFromStmt(sqlite3 *db, const char *zSql, int *piVal) argument
147792 char *zSql; local
147887 char *zSql = sqlite3_mprintf("CREATE TABLE x(%s", argv[3]); local
[all...]
/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dfts1.c2885 char *zSql; local
2889 zSql = sqlite3_mprintf("select rowid, * from %%_content %s",
2892 rc = sql_prepare(v->db, v->zDb, v->zName, &c->pStmt, zSql);
2893 sqlite3_free(zSql);
3295 char *zSql = sqlite3_mprintf( local
3301 if( zSql ){
3302 rc = sqlite3_exec(p->db, zSql, 0, 0, 0);
3303 sqlite3_free(zSql);
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3_expr.c769 const char zSql[] = "SELECT fts3_tokenizer(?)"; local
772 rc = sqlite3_prepare_v2(db, zSql, -1, &pStmt, 0);
H A Dfts3.c476 char *zSql; local
479 zSql = sqlite3_vmprintf(zFormat, ap);
481 if( zSql==0 ){
484 *pRc = sqlite3_exec(db, zSql, 0, 0, 0);
485 sqlite3_free(zSql);
525 char *zSql; /* SQL statement passed to declare_vtab() */ local
535 zSql = sqlite3_mprintf(
538 if( !zCols || !zSql ){
541 rc = sqlite3_declare_vtab(p->db, zSql);
544 sqlite3_free(zSql);
621 char *zSql; /* SQL text "PRAGMA %Q.page_size" */ local
3051 char *zSql; /* SQL statement used to access %_content */ local
[all...]
H A Dfts3_write.c247 char *zSql; local
249 zSql = sqlite3_mprintf(azSql[eStmt], p->zDb, p->zName, p->zWriteExprlist);
251 zSql = sqlite3_mprintf(azSql[eStmt], p->zReadExprlist, p->zDb, p->zName);
253 zSql = sqlite3_mprintf(azSql[eStmt], p->zDb, p->zName);
255 if( !zSql ){
258 rc = sqlite3_prepare_v2(p->db, zSql, -1, &pStmt, NULL);
259 sqlite3_free(zSql);
/external/chromium_org/third_party/sqlite/src/ext/fts2/
H A Dfts2.c4017 char *zSql = sqlite3_mprintf("select rowid, * from %%_content %s", local
4019 rc = sql_prepare(v->db, v->zDb, v->zName, &c->pStmt, zSql);
4020 sqlite3_free(zSql);
7148 char *zSql = sqlite3_mprintf( local
7156 if( zSql ){
7157 rc = sqlite3_exec(p->db, zSql, 0, 0, 0);
7158 sqlite3_free(zSql);

Completed in 1007 milliseconds

12