Home
last modified time | relevance | path

Searched refs:zIdx (Results 1 – 2 of 2) sorted by relevance

/netbsd/src/external/public-domain/sqlite/dist/
Dshell.c11958 char *zIdx; /* Indexes */ member
12740 const char *zIdx = (const char*)sqlite3_column_text(pIdxList, 1); in idxFindCompatible() local
12741 if( zIdx==0 ) continue; in idxFindCompatible()
12746 rc = idxPrintfPrepareStmt(dbm, &pInfo, 0, "PRAGMA index_xInfo=%Q", zIdx); in idxFindCompatible()
12811 char *zIdx = 0; in idxCreateFromCons() local
12863 zIdx = sqlite3_mprintf(zFmt, zName, zTable, zCols); in idxCreateFromCons()
12864 if( !zIdx ){ in idxCreateFromCons()
12867 rc = sqlite3_exec(dbm, zIdx, 0, 0, p->pzErrmsg); in idxCreateFromCons()
12871 idxHashAdd(&rc, &p->hIdx, zName, zIdx); in idxCreateFromCons()
12875 sqlite3_free(zIdx); in idxCreateFromCons()
[all …]
Dsqlite3.c216499 char *zIdx;
216556 const char *zIdx; /* Name of target db index (or null) */
217147 if( pIter->zIdx==0 ){
217171 if( pIter->zIdx==0 ){
217180 pIter->zIdx = 0;
217182 pIter->zIdx = (const char*)sqlite3_column_text(pIter->pIdxIter, 0);
217185 rc = pIter->zIdx ? SQLITE_OK : SQLITE_NOMEM;
217505 const u8 *zIdx = sqlite3_column_text(aStmt[1], 1);
217506 if( zOrig && zIdx && zOrig[0]=='p' ){
217509 "SELECT rootpage FROM sqlite_schema WHERE name = %Q", zIdx
[all …]