Searched refs:pIdxList (Results 1 - 2 of 2) sorted by relevance

/external/sqlite/dist/orig/
H A Dshell.c6778 sqlite3_stmt *pIdxList = 0; local
6786 rc = idxPrintfPrepareStmt(dbm, &pIdxList, 0, "PRAGMA index_list=%Q", zTbl);
6787 while( rc==SQLITE_OK && sqlite3_step(pIdxList)==SQLITE_ROW ){
6791 const char *zIdx = (const char*)sqlite3_column_text(pIdxList, 1);
6827 sqlite3_finalize(pIdxList);
6831 idxFinalize(&rc, pIdxList);
/external/sqlite/dist/
H A Dshell.c6784 sqlite3_stmt *pIdxList = 0; local
6792 rc = idxPrintfPrepareStmt(dbm, &pIdxList, 0, "PRAGMA index_list=%Q", zTbl);
6793 while( rc==SQLITE_OK && sqlite3_step(pIdxList)==SQLITE_ROW ){
6797 const char *zIdx = (const char*)sqlite3_column_text(pIdxList, 1);
6833 sqlite3_finalize(pIdxList);
6837 idxFinalize(&rc, pIdxList);

Completed in 188 milliseconds