D
David W. Simmonds
I have a table that has a unique numeric field named ID. It want to build a
list of records that match a criteria. I would rather not store all the
record contents in the list. I would like to just store the ID value in a
list. Then when I need the full record data, I would like to "Seek" to that
record and read the data. Using ADO.NET, how can I get to a particular
record without having to execute a SQL command like "SELECT * FROM tblData
WHERE ID=xxx" where xxx is the ID. Is there a fast seek method of some sort?
list of records that match a criteria. I would rather not store all the
record contents in the list. I would like to just store the ID value in a
list. Then when I need the full record data, I would like to "Seek" to that
record and read the data. Using ADO.NET, how can I get to a particular
record without having to execute a SQL command like "SELECT * FROM tblData
WHERE ID=xxx" where xxx is the ID. Is there a fast seek method of some sort?