I would have to see what you are attempting to do to better understand. One
of my former coworkers did some tests with the TableAdapter that absolutely
smoked. It was compared to filling DataSets, however, so the tests may be
invalid in your world.

Signature
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
***************************
Think Outside the Box!
***************************
> Hi,
>
[quoted text clipped - 10 lines]
>
> Thanks for reading.
Programatix - 31 Dec 2005 01:12 GMT
The DataTable's Load method also fill the dataset. But it reads from a
DataReader that we need to supply. Take a look at the Load method for
DataTable.
>I would have to see what you are attempting to do to better understand. One
> of my former coworkers did some tests with the TableAdapter that
[quoted text clipped - 16 lines]
>>
>> Thanks for reading.
Nitin - 17 Jan 2006 09:42 GMT
Hi All,
I have done a small benchmarking exercise to populate a strongly type
Datatable having 3 columns with 10,000 records .
I have followed four methods and perfrom 100 iterations to reac
folowing results
1- DataTableAdapters fill method - takes Avg time of 281.01 ms
2- DataTableAdapters Getdatamethod - takes Avg time of 290 ms
3- Datatables Load method - takes 204.06 ms
4- Datatables Load method in conjnuction with BeginloadData/EndLoadDat
takes 202.49 ms
So This Resul shows that DataTables Load method along wit
BeginLoadData and EndLoadData gives the best performace . If anyone ha
any comments or queries Pls lemme know i can be reached a
kapnitin@yahoo.co
--
Niti
Are you filling a DataSet, or a DataTable with a lot of relations in it?
- Sahil Malik [MVP]
ADO.NET 2.0 book -
http://codebetter.com/blogs/sahil.malik/archive/2005/05/13/63199.aspx
__________________________________________________________
> Hi,
>
[quoted text clipped - 10 lines]
>
> Thanks for reading.
Programatix - 02 Jan 2006 04:41 GMT
Hmmm.. There are 4 DataTables in the DataSet. Each is linked with each other
in a seriel form, meaning that table 1 is related to table 2, table 2 is
related to table 3 and so on.
Why?
> Are you filling a DataSet, or a DataTable with a lot of relations in it?
>
[quoted text clipped - 17 lines]
>>
>> Thanks for reading.
Sahil Malik [MVP C#] - 02 Jan 2006 14:44 GMT
Okay try this -
On the 4 tables, call "BeginLoadData" before you start filling, and
"EndLoadData" after the data has been filled. See if that helps.
- Sahil Malik [MVP]
ADO.NET 2.0 book -
http://codebetter.com/blogs/sahil.malik/archive/2005/05/13/63199.aspx
__________________________________________________________
> Hmmm.. There are 4 DataTables in the DataSet. Each is linked with each
> other in a seriel form, meaning that table 1 is related to table 2, table
[quoted text clipped - 23 lines]
>>>
>>> Thanks for reading.