Searched refs:zIdx (Results 1 – 2 of 2) sorted by relevance
| /freebsd/contrib/sqlite3/ |
| H A D | shell.c | 14887 char *zIdx; /* Indexes */ member 15669 const char *zIdx = (const char*)sqlite3_column_text(pIdxList, 1); in idxFindCompatible() local 15670 if( zIdx==0 ) continue; in idxFindCompatible() 15675 rc = idxPrintfPrepareStmt(dbm, &pInfo, 0, "PRAGMA index_xInfo=%Q", zIdx); in idxFindCompatible() 15740 char *zIdx = 0; in idxCreateFromCons() local 15792 zIdx = sqlite3_mprintf(zFmt, zName, zTable, zCols); in idxCreateFromCons() 15793 if( !zIdx ){ in idxCreateFromCons() 15796 rc = sqlite3_exec(dbm, zIdx, 0, 0, p->pzErrmsg); in idxCreateFromCons() 15800 idxHashAdd(&rc, &p->hIdx, zName, zIdx); in idxCreateFromCons() 15804 sqlite3_free(zIdx); in idxCreateFromCons() [all …]
|
| H A D | sqlite3.c | 226525 char *zIdx; member 226582 const char *zIdx; /* Name of target db index (or null) */ member 227206 if( pIter->zIdx==0 ){ 227231 if( pIter->zIdx==0 ){ 227240 pIter->zIdx = 0; 227242 pIter->zIdx = (const char*)sqlite3_column_text(pIter->pIdxIter, 0); 227245 rc = pIter->zIdx ? SQLITE_OK : SQLITE_NOMEM; 227565 const u8 *zIdx = sqlite3_column_text(aStmt[1], 1); local 227566 if( zOrig && zIdx && zOrig[0]=='p' ){ 227569 "SELECT rootpage FROM sqlite_schema WHERE name = %Q", zIdx [all …]
|