Lines Matching refs:zTbl
12726 const char *zTbl = pScan->pTab->zName; in idxFindCompatible() local
12735 rc = idxPrintfPrepareStmt(dbm, &pIdxList, 0, "PRAGMA index_list=%Q", zTbl); in idxFindCompatible()
16400 const char *zTbl = (const char*)sqlite3_column_text(pTblname, 0); in recoverWriteSchema1() local
16401 recoverAddTable(p, zTbl, iRoot); in recoverWriteSchema1()
16586 char *zTbl = 0; in recoverLostAndFoundCreate() local
16593 for(ii=-1; zTbl==0 && p->errCode==SQLITE_OK && ii<1000; ii++){ in recoverLostAndFoundCreate()
16596 zTbl = recoverMPrintf(p, "%s", p->zLostAndFound); in recoverLostAndFoundCreate()
16598 zTbl = recoverMPrintf(p, "%s_%d", p->zLostAndFound, ii); in recoverLostAndFoundCreate()
16602 sqlite3_bind_text(pProbe, 1, zTbl, -1, SQLITE_STATIC); in recoverLostAndFoundCreate()
16611 sqlite3_free(zTbl); in recoverLostAndFoundCreate()
16612 zTbl = 0; in recoverLostAndFoundCreate()
16617 if( zTbl ){ in recoverLostAndFoundCreate()
16628 zSql = recoverMPrintf(p, "CREATE TABLE %s(%s)", zTbl, zField); in recoverLostAndFoundCreate()
16640 return zTbl; in recoverLostAndFoundCreate()