I'm trying to bind to querys and would like to know most efficient way to do it
I have these that both need binding as one
SELECT * FROM categories ORDER BY categoryDesc
and
select count(*) as amount from products where idCategory = "&idCat&" and listhidden = 0"
idCat is in a loop from the first query, I dont want to recordsets just the one
Many thxs