What is maximum number of rows a datatable, OleDbDataReader and SqlDataReader can hold?
Maximum Rows for a datatable and data readers
Collapse
X
-
I've actually loaded a DataTable with over 2 million records once...not on purpose; I forgot to code in my WHERE clause :/
It crashed because I ran out of memory but it kept loading. I think that the maximum theoretical rows is less important than what you can actually fit in memory and still be useful.Comment
Comment