Hi,
I try to test the components in the extreme situations.
So, I have DataSet with 92000 rows and 60 columns(please don’t ask why, it is one of our customer requirements).
I filled DataSet using the same method of DataAdapter, it’s take about 20 second,
next I assign DataSourse to the Xceed Grid
this.grdMain.BeginInit();
this.grdMain.DataSource = dataSet1.Tables[“Main”];
this.grdMain.EndInit();
it’s take 40 second.
But when I try release resourse or apply changes to database it’s take to much time (about 20 minutes)
this.grdMain.BeginInit();
this.dataSet1.Clear();
this.grdXceed.DataSource = null;
this.grdXceed.EndInit();
May be I’m using your library in wrong way? Or it not intended to use with large data volumes? Or may be clear may be done faster in some other way?
Thanks,
Victor
Imported from legacy forums. Posted by ChVik2 (had 2152 views)