I am using a single SQL to get several values: Count, Average, stdDev, Min, and MAX.
I am using the command and reader style. Example:
The problem is that I am only able to read the Count result.. How do I see them all?HTML Code:Command.Commandtext = SQLstring Reader = Command.ExecuteReader While Reader.Read = True debug.writeline(reader.getvalue(0)) end while
Rudy




Reply With Quote