How can I programmatically loop through the results of my query. I want to assign each field to a variable, can someone point me in the direction of some example code on how to do this???
Thanks
Jake
The best way to do something like this, is to use Reflection. Using
something like ResultSetMetaData can provide what you need.
Curious however, why you want to assign the results to a variable. You
would be much better off using RowSets for cached results from a query.
Much less work, similar results.