Or you may want to look into disassociated record sets. Then you can
populate the data and let ADO do the sorting.
Well, let me tell you what I'm doing. I thought maybe arrays were the
best way to handle it, but, as usual, I could be wrong.
I'm pulling the contents of a table into a page. I need to display the
data in three different sections:
1. The newest rows, sorted by time stamp
2. "Featured" rows, sorted by Name
3. All rows, sorted by Name
Rather than running three different recordsets with slightly different
SQL statements, I thought maybe with an array -- which I'm just learning
about and the sorting methods have been a little confusing -- I could do
just one recordset of all rows and filter and sort it as needed without
having to keep hitting the database (which is the way I've always done
things, and is simple from my p.o.v., but I'm trying to broaden myself
this time around and conserve resources).
Am I on the right track, or would some other method suit me better, like
disassociated record sets (which I had never heard of until now).