Searched refs:pSql (Results 1 – 4 of 4) sorted by relevance
/external/sqlite/dist/orig/ |
D | shell.c | 7686 sqlite3_stmt *pSql; in sqlite3_expert_new() local 7687 rc = idxPrintfPrepareStmt(pNew->db, &pSql, pzErrmsg, in sqlite3_expert_new() 7691 while( rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pSql) ){ in sqlite3_expert_new() 7692 const char *zSql = (const char*)sqlite3_column_text(pSql, 0); in sqlite3_expert_new() 7695 idxFinalize(&rc, pSql); in sqlite3_expert_new() 9348 static void explain_data_prepare(ShellState *p, sqlite3_stmt *pSql){ in explain_data_prepare() argument 9363 if( sqlite3_column_count(pSql)!=8 ){ in explain_data_prepare() 9367 zSql = sqlite3_sql(pSql); in explain_data_prepare() 9375 for(iOp=0; SQLITE_ROW==sqlite3_step(pSql); iOp++){ in explain_data_prepare() 9377 int iAddr = sqlite3_column_int(pSql, 0); in explain_data_prepare() [all …]
|
D | sqlite3.c | 175904 sqlite3_stmt *pSql = 0; 175910 p->rc = prepareAndCollectError(p->dbRbu, &pSql, &p->zErrmsg, 175917 while( p->rc==SQLITE_OK && sqlite3_step(pSql)==SQLITE_ROW ){ 175918 const char *zSql = (const char*)sqlite3_column_text(pSql, 0); 175921 rbuFinalize(p, pSql); 175925 p->rc = prepareAndCollectError(p->dbRbu, &pSql, &p->zErrmsg, 175936 while( p->rc==SQLITE_OK && sqlite3_step(pSql)==SQLITE_ROW ){ 175939 sqlite3_bind_value(pInsert, i+1, sqlite3_column_value(pSql, i)); 175948 rbuFinalize(p, pSql);
|
/external/sqlite/dist/ |
D | shell.c | 7692 sqlite3_stmt *pSql; in sqlite3_expert_new() local 7693 rc = idxPrintfPrepareStmt(pNew->db, &pSql, pzErrmsg, in sqlite3_expert_new() 7697 while( rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pSql) ){ in sqlite3_expert_new() 7698 const char *zSql = (const char*)sqlite3_column_text(pSql, 0); in sqlite3_expert_new() 7701 idxFinalize(&rc, pSql); in sqlite3_expert_new() 9354 static void explain_data_prepare(ShellState *p, sqlite3_stmt *pSql){ in explain_data_prepare() argument 9369 if( sqlite3_column_count(pSql)!=8 ){ in explain_data_prepare() 9373 zSql = sqlite3_sql(pSql); in explain_data_prepare() 9381 for(iOp=0; SQLITE_ROW==sqlite3_step(pSql); iOp++){ in explain_data_prepare() 9383 int iAddr = sqlite3_column_int(pSql, 0); in explain_data_prepare() [all …]
|
D | sqlite3.c | 175932 sqlite3_stmt *pSql = 0; 175938 p->rc = prepareAndCollectError(p->dbRbu, &pSql, &p->zErrmsg, 175945 while( p->rc==SQLITE_OK && sqlite3_step(pSql)==SQLITE_ROW ){ 175946 const char *zSql = (const char*)sqlite3_column_text(pSql, 0); 175949 rbuFinalize(p, pSql); 175953 p->rc = prepareAndCollectError(p->dbRbu, &pSql, &p->zErrmsg, 175964 while( p->rc==SQLITE_OK && sqlite3_step(pSql)==SQLITE_ROW ){ 175967 sqlite3_bind_value(pInsert, i+1, sqlite3_column_value(pSql, i)); 175976 rbuFinalize(p, pSql);
|