C
Chris Nash
Greetings all,
I am using an Access Database to store question information for a
questionare application. I am using VB.net as the front end, and
ADO.net to retrieve the information from the database. My data is bring
displayed in a DataGrid bound to a dataset. All of my calls to the
database are to parameter queries.
The problem that I am having is with the update command. When I call
the update method for my data adapter, and pass a dataset containing
only the changed records, only one record shows the change. I know that
parameter queries work because data is being returned and update, just
not in the quantities that I want.
From what I have read, the update method in ADO.NET should be able to
process a batch change, but the only specific information I have been
able to find concerns SQL Server and not MS Access. The only
information I have been able to find regarding the update method and MS
Access were for single records.
Does ADO.net send each update request separately, waiting for
conformations between requests, or does it send all of the changes at
once? I know, if you write the queries properly, SQL server can process
the data in a lump sum, but I do not believe Access has that ability.
I have been working on this for several days. Any help you can provide
would be greatly appreciated
Thanks in advance,
Edison
I am using an Access Database to store question information for a
questionare application. I am using VB.net as the front end, and
ADO.net to retrieve the information from the database. My data is bring
displayed in a DataGrid bound to a dataset. All of my calls to the
database are to parameter queries.
The problem that I am having is with the update command. When I call
the update method for my data adapter, and pass a dataset containing
only the changed records, only one record shows the change. I know that
parameter queries work because data is being returned and update, just
not in the quantities that I want.
From what I have read, the update method in ADO.NET should be able to
process a batch change, but the only specific information I have been
able to find concerns SQL Server and not MS Access. The only
information I have been able to find regarding the update method and MS
Access were for single records.
Does ADO.net send each update request separately, waiting for
conformations between requests, or does it send all of the changes at
once? I know, if you write the queries properly, SQL server can process
the data in a lump sum, but I do not believe Access has that ability.
I have been working on this for several days. Any help you can provide
would be greatly appreciated
Thanks in advance,
Edison