Lines Matching refs:zTbl
12805 const char *zTbl = pScan->pTab->zName; in idxFindCompatible() local
12814 rc = idxPrintfPrepareStmt(dbm, &pIdxList, 0, "PRAGMA index_list=%Q", zTbl); in idxFindCompatible()
17663 const char *zTbl = (const char*)sqlite3_column_text(pTblname, 0); in recoverWriteSchema1() local
17664 if( zTbl ) recoverAddTable(p, zTbl, iRoot); in recoverWriteSchema1()
17849 char *zTbl = 0; in recoverLostAndFoundCreate() local
17856 for(ii=-1; zTbl==0 && p->errCode==SQLITE_OK && ii<1000; ii++){ in recoverLostAndFoundCreate()
17859 zTbl = recoverMPrintf(p, "%s", p->zLostAndFound); in recoverLostAndFoundCreate()
17861 zTbl = recoverMPrintf(p, "%s_%d", p->zLostAndFound, ii); in recoverLostAndFoundCreate()
17865 sqlite3_bind_text(pProbe, 1, zTbl, -1, SQLITE_STATIC); in recoverLostAndFoundCreate()
17874 sqlite3_free(zTbl); in recoverLostAndFoundCreate()
17875 zTbl = 0; in recoverLostAndFoundCreate()
17880 if( zTbl ){ in recoverLostAndFoundCreate()
17891 zSql = recoverMPrintf(p, "CREATE TABLE %s(%s)", zTbl, zField); in recoverLostAndFoundCreate()
17903 return zTbl; in recoverLostAndFoundCreate()