what are the practical Limitations of Dataset and datatable
hi,
What are the limitations of a .Net dataset and datatable like
Maximum number of rows ?, Maximum number of columns in datatable?.
Is there any of these limitations improved in .Net 2.0
Thanks
vinothkumar
[219 byte] By [
vinxter] at [2007-12-16]
Hi,
Datatable max rows - 16,777,216
Can't seem to find the max columns. But I guess its still the same...
IMHO, the real limitation would be on your hardware. I think its impossible for a low-end cpu to reach the limits of the datatable and dataset objects...
cheers,
Paul June A. Domag
Remeber there are apples and oranges here:
The backend DB has one row limit and the client side has another. The addressable limit is usually way beyond what typical hardware can handle on either side.
If you are draging more that a few MBs of row data to the client you may want to look at alternatives.