tags:

views:

608

answers:

1

I'm adding data rows to my data table but the row count in the data table does not increase. Seems to be a limit of either size of the table or number of data rows.

FYI, .net 2.0

+1  A: 

Click here to see the limitations of the datatable type. 16,777,216 is the maximum number of records.

codeelegance
Well, that's not my problem. I can't add more than 400 rows and I only have three columns of doubles (values ranging from 200'ish to 9000'ish). This seems like a pretty small data table.Thanks. I'll keep digging. . .
Scott