Using VB 2010 Express, Windows Forms, and a SQL Server 2008 database
My Prospect Table has many columns.
When I click the Finished button with the code below, it takes 6 seconds for the "UpdateAll" to complete.
The DeiDatabaseDataSet2 has 7 Tables; I use 4 of these tables; but I only make changes to 2 of these tables(the ones shown below).
I have another dataset with 3 tables which I use to search against but make no changes to any of these tables.
I have bound controls to a total of 7 tables on my Windows Form
Why does it take so long for the UpdateAll to complete?
My Prospect Table has many columns.
When I click the Finished button with the code below, it takes 6 seconds for the "UpdateAll" to complete.
The DeiDatabaseDataSet2 has 7 Tables; I use 4 of these tables; but I only make changes to 2 of these tables(the ones shown below).
I have another dataset with 3 tables which I use to search against but make no changes to any of these tables.
I have bound controls to a total of 7 tables on my Windows Form
undefined Code:
Me.Validate() Me.DealershipTableBindingSource.EndEdit() '#### Me.ProspectTable1BindingSource.EndEdit() '#### Me.TableAdapterManager.UpdateAll(Me.DeiDatabaseDataSet2) Me.DeiDatabaseDataSet2.AcceptChanges() Cursor = Cursors.Default
Why does it take so long for the UpdateAll to complete?