Searched refs:pSql (Results 1 – 3 of 3) sorted by relevance
/third_party/sqlite/src/ |
D | shell.c | 11074 sqlite3_stmt *pSql; in sqlite3_expert_new() local 11075 rc = idxPrintfPrepareStmt(pNew->db, &pSql, pzErrmsg, in sqlite3_expert_new() 11079 while( rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pSql) ){ in sqlite3_expert_new() 11080 const char *zSql = (const char*)sqlite3_column_text(pSql, 0); in sqlite3_expert_new() 11083 idxFinalize(&rc, pSql); in sqlite3_expert_new() 13957 static void explain_data_prepare(ShellState *p, sqlite3_stmt *pSql){ in explain_data_prepare() argument 13971 if( sqlite3_column_count(pSql)!=8 ){ in explain_data_prepare() 13975 zSql = sqlite3_sql(pSql); in explain_data_prepare() 13983 for(iOp=0; SQLITE_ROW==sqlite3_step(pSql); iOp++){ in explain_data_prepare() 13985 int iAddr = sqlite3_column_int(pSql, 0); in explain_data_prepare() [all …]
|
D | sqlite3.c | 198360 sqlite3_str *pSql; 198402 pSql = sqlite3_str_new(db); 198403 sqlite3_str_appendf(pSql, "CREATE TABLE x(%.*s INT", 198409 sqlite3_str_appendf(pSql, ",%.*s", rtreeTokenLength(zArg+1), zArg+1); 198415 sqlite3_str_appendf(pSql, azFormat[eCoordType], 198419 sqlite3_str_appendf(pSql, ");"); 198420 zSql = sqlite3_str_finish(pSql); 200260 sqlite3_str *pSql; 200289 pSql = sqlite3_str_new(db); 200290 sqlite3_str_appendf(pSql, "CREATE TABLE x(_shape"); [all …]
|
/third_party/chromium/patch/ |
D | 0003-3.2-Beta3-1115.patch | 88184 - sqlite3_stmt *pSql; 88185 + sqlite3_stmt *pSql = 0; 88186 rc = idxPrintfPrepareStmt(pNew->db, &pSql, pzErrmsg, 88190 while( rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pSql) ){ 88191 const char *zSql = (const char*)sqlite3_column_text(pSql, 0); 88195 idxFinalize(&rc, pSql); 88487 @@ -13961,7 +14076,8 @@ static void explain_data_prepare(ShellState *p, sqlite3_stmt *pSql){ 88497 @@ -14011,15 +14127,15 @@ static void explain_data_prepare(ShellState *p, sqlite3_stmt *pSql){ 89392 const char *zCI = (const char*)sqlite3_column_text(pSql, 4); 89393 const char *zParent = (const char*)sqlite3_column_text(pSql, 5); [all …]
|