I am wondering if there is a faster method than using something like:
while (Reader.Read())
to read mysql select query results.
I accidentally pull 10,000 rows from a database and would like to read this as quickly as possible. Is there a way to serialize the results if we know what they are (for example, using metadata to set up the structure)?
c # mysql
simpleCoder
source share