Lines Matching refs:zQuery
805 char *zQuery = 0; in echoBestIndex() local
837 zQuery = sqlite3_mprintf("SELECT count(*) FROM %Q", pVtab->zTableName); in echoBestIndex()
838 if( !zQuery ){ in echoBestIndex()
841 rc = sqlite3_prepare(pVtab->db, zQuery, -1, &pStmt, 0); in echoBestIndex()
842 sqlite3_free(zQuery); in echoBestIndex()
856 zQuery = sqlite3_mprintf("SELECT rowid%z FROM %Q", zCol, pVtab->zTableName); in echoBestIndex()
857 if( !zQuery ) return SQLITE_NOMEM; in echoBestIndex()
908 string_concat(&zQuery, zNew, 1, &rc); in echoBestIndex()
927 string_concat(&zQuery, zNew, 1, &rc); in echoBestIndex()
932 appendToEchoModule(pVtab->interp, zQuery); in echoBestIndex()
934 if( !zQuery ){ in echoBestIndex()
937 pIdxInfo->idxNum = hashString(zQuery); in echoBestIndex()
938 pIdxInfo->idxStr = zQuery; in echoBestIndex()