Hello all,
I have this question or doubt about how SqlDataAdapter operates:
I have a DataSet which I have filled from a plain text file.
I fill a SqlDataAdapter with this DataSet.
I execute the SqlDataAdapter.Update method so the dataSet is inserted in a SQL Server Data base.
This is all working fine, now, what I suspect from a log sent by the DB administrator is that the SqlDataAdapter.Update operation is executing a Select command first, returning all the records from the table before inserting the records in the DataSet!
All the records in the dataSet are new to the table in the data base and sholud be inserted without checking wheter they are to be updated (since they didn
I have this question or doubt about how SqlDataAdapter operates:
I have a DataSet which I have filled from a plain text file.
I fill a SqlDataAdapter with this DataSet.
I execute the SqlDataAdapter.Update method so the dataSet is inserted in a SQL Server Data base.
This is all working fine, now, what I suspect from a log sent by the DB administrator is that the SqlDataAdapter.Update operation is executing a Select command first, returning all the records from the table before inserting the records in the DataSet!
All the records in the dataSet are new to the table in the data base and sholud be inserted without checking wheter they are to be updated (since they didn