Lines Matching refs:zTbl
13644 const char *zTbl = pScan->pTab->zName; in idxFindCompatible() local
13653 rc = idxPrintfPrepareStmt(dbm, &pIdxList, 0, "PRAGMA index_list=%Q", zTbl); in idxFindCompatible()
19913 const char *zTbl = (const char*)sqlite3_column_text(pTblname, 0); in recoverWriteSchema1() local
19914 if( zTbl ) recoverAddTable(p, zTbl, iRoot); in recoverWriteSchema1()
20099 char *zTbl = 0; in recoverLostAndFoundCreate() local
20106 for(ii=-1; zTbl==0 && p->errCode==SQLITE_OK && ii<1000; ii++){ in recoverLostAndFoundCreate()
20109 zTbl = recoverMPrintf(p, "%s", p->zLostAndFound); in recoverLostAndFoundCreate()
20111 zTbl = recoverMPrintf(p, "%s_%d", p->zLostAndFound, ii); in recoverLostAndFoundCreate()
20115 sqlite3_bind_text(pProbe, 1, zTbl, -1, SQLITE_STATIC); in recoverLostAndFoundCreate()
20124 sqlite3_free(zTbl); in recoverLostAndFoundCreate()
20125 zTbl = 0; in recoverLostAndFoundCreate()
20130 if( zTbl ){ in recoverLostAndFoundCreate()
20141 zSql = recoverMPrintf(p, "CREATE TABLE %s(%s)", zTbl, zField); in recoverLostAndFoundCreate()
20153 return zTbl; in recoverLostAndFoundCreate()