With the help of you guys, I have created an object that is similiar to the recordset in classic asp.
public class RecordSet: List<Dictionary<string, object>>
{
}
So I can access the data like:
RecordSet rs = new RecordSet();
rs[rowID]["columnName"];
How can I get access like this also, i.e. ordinal referece:
rs[rowId][2];
Please don't ask me why I just don't use a datatable, this is partly for fun and learning and testing hehe