Searched refs:zIdx (Results 1 – 2 of 2) sorted by relevance
| /src/contrib/sqlite3/ |
| H A D | shell.c | 12876 char *zIdx; /* Indexes */ member 13658 const char *zIdx = (const char*)sqlite3_column_text(pIdxList, 1); in idxFindCompatible() local 13659 if( zIdx==0 ) continue; in idxFindCompatible() 13664 rc = idxPrintfPrepareStmt(dbm, &pInfo, 0, "PRAGMA index_xInfo=%Q", zIdx); in idxFindCompatible() 13729 char *zIdx = 0; in idxCreateFromCons() local 13781 zIdx = sqlite3_mprintf(zFmt, zName, zTable, zCols); in idxCreateFromCons() 13782 if( !zIdx ){ in idxCreateFromCons() 13785 rc = sqlite3_exec(dbm, zIdx, 0, 0, p->pzErrmsg); in idxCreateFromCons() 13789 idxHashAdd(&rc, &p->hIdx, zName, zIdx); in idxCreateFromCons() 13793 sqlite3_free(zIdx); in idxCreateFromCons() [all …]
|
| H A D | sqlite3.c | 221496 char *zIdx; 221553 const char *zIdx; /* Name of target db index (or null) */ 222166 if( pIter->zIdx==0 ){ 222191 if( pIter->zIdx==0 ){ 222200 pIter->zIdx = 0; 222202 pIter->zIdx = (const char*)sqlite3_column_text(pIter->pIdxIter, 0); 222205 rc = pIter->zIdx ? SQLITE_OK : SQLITE_NOMEM; 222525 const u8 *zIdx = sqlite3_column_text(aStmt[1], 1); 222526 if( zOrig && zIdx && zOrig[0]=='p' ){ 222529 "SELECT rootpage FROM sqlite_schema WHERE name = %Q", zIdx [all …]
|