Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dshell.c12037 char *zIdx; /* Indexes */ member
12819 const char *zIdx = (const char*)sqlite3_column_text(pIdxList, 1); in idxFindCompatible() local
12820 if( zIdx==0 ) continue; in idxFindCompatible()
12825 rc = idxPrintfPrepareStmt(dbm, &pInfo, 0, "PRAGMA index_xInfo=%Q", zIdx); in idxFindCompatible()
12890 char *zIdx = 0; in idxCreateFromCons() local
12942 zIdx = sqlite3_mprintf(zFmt, zName, zTable, zCols); in idxCreateFromCons()
12943 if( !zIdx ){ in idxCreateFromCons()
12946 rc = sqlite3_exec(dbm, zIdx, 0, 0, p->pzErrmsg); in idxCreateFromCons()
12950 idxHashAdd(&rc, &p->hIdx, zName, zIdx); in idxCreateFromCons()
12954 sqlite3_free(zIdx); in idxCreateFromCons()
[all …]
H A Dsqlite3.c218341 char *zIdx;
218398 const char *zIdx; /* Name of target db index (or null) */
218989 if( pIter->zIdx==0 ){
219014 if( pIter->zIdx==0 ){
219023 pIter->zIdx = 0;
219025 pIter->zIdx = (const char*)sqlite3_column_text(pIter->pIdxIter, 0);
219028 rc = pIter->zIdx ? SQLITE_OK : SQLITE_NOMEM;
219348 const u8 *zIdx = sqlite3_column_text(aStmt[1], 1);
219349 if( zOrig && zIdx && zOrig[0]=='p' ){
219352 "SELECT rootpage FROM sqlite_schema WHERE name = %Q", zIdx
[all …]