Can you tell me How many rows datagrid contain ! Pls
-
Can you tell me how many rows datagrid can contain ! Pls Can you tell me how many tables dataset can contain ! Pls can you tell me how many rows DataTable can contain ! Pls
Theoretically it's an infinite number, I believe. Theoretically it's an infinite number, I believe. Theoretically it's an infinite number, I believe. Of course this will all depend on the resources available to your computer. If you run out of memory, your variable obviously isn't going to get any bigger... Why do you ask? _____________________ Don't take out the Magic Pen, Don't draw on the Infinity Board - Neil Young
-
Theoretically it's an infinite number, I believe. Theoretically it's an infinite number, I believe. Theoretically it's an infinite number, I believe. Of course this will all depend on the resources available to your computer. If you run out of memory, your variable obviously isn't going to get any bigger... Why do you ask? _____________________ Don't take out the Magic Pen, Don't draw on the Infinity Board - Neil Young
I have built a program by Vb.net. It collect all information in a table of Oracle Database into dataset and datatable and datagrid. So I can write this information into foxpro file. If dataset, datagrid and datatable can not contain all information. The foxpro file will be missed data. This tables in my database contains a lots of rows. Now, It contains about some milions rows. But in the future, I thinks it will become bigger. This records are call data records of CDMA.
-
I have built a program by Vb.net. It collect all information in a table of Oracle Database into dataset and datatable and datagrid. So I can write this information into foxpro file. If dataset, datagrid and datatable can not contain all information. The foxpro file will be missed data. This tables in my database contains a lots of rows. Now, It contains about some milions rows. But in the future, I thinks it will become bigger. This records are call data records of CDMA.
Well I'm pretty sure that there's no theoretical limit to the sizes of any of these structures, it just depends on how the rest of your application can handle the sheer processing requirements. Anyone else know more? Regards, Kutz _____________________ Don't take out the Magic Pen, Don't draw on the Infinity Board - Neil Young
-
Well I'm pretty sure that there's no theoretical limit to the sizes of any of these structures, it just depends on how the rest of your application can handle the sheer processing requirements. Anyone else know more? Regards, Kutz _____________________ Don't take out the Magic Pen, Don't draw on the Infinity Board - Neil Young
-
Anyway, thanks you alots. If you know more, pls, tell me. I am looking forward to receiving nice information from you !
Well, a datagrid is simply a container to show the contents of a dataset, so the limit will be the dataset. And I don't think datasets have a theoretical size limit. _____________________ Don't take out the Magic Pen, Don't draw on the Infinity Board - Neil Young
-
Anyway, thanks you alots. If you know more, pls, tell me. I am looking forward to receiving nice information from you !
In theory, there is no limit, other than available memory and the size of an index pointer. But, you don't have to read in the entire datatable all at once. If you use DataReader's, you can read each record, one at time and don't have to care about the size of the database. Retrieving Data Using the DataReader[^] RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome
-
In theory, there is no limit, other than available memory and the size of an index pointer. But, you don't have to read in the entire datatable all at once. If you use DataReader's, you can read each record, one at time and don't have to care about the size of the database. Retrieving Data Using the DataReader[^] RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome