I have a datagridview in vb.net that is bound to a datasource. I did this in design view, and I wanted minimum coding.
So without any SQL, I did the following steps:
- Added a datagridview from the toolbox.
- Added new project datasource (this datasource,
AllDB_datasethas a lot of tables). - From the little arrow created on the top of the new datagridview, I selected Project Data Sources > AllDB_dataset > Beverages.
This automatically created a BeveragesBindingSource and BeveragesTableAdapter.
Everything's fine up till here. When I run the program, I can see the datagridview correctly displaying the items in the beverages table.
Now I have a save button, so that whenever someone adds to the datagridview or changes an existing item, the changes should be saved to the database.
Excluding the Try/Catch etc, this is my code for the save button relevant to the update:
Me.BeveragesBindingSource.EndEdit()
Me.BeveragesTableAdapter.Update(Me.AllDB_dataset.Beverages)
Me.AllDB_dataset.AcceptChanges()
If I try to add a new item to the datagridview, it gets saved to the Beverages table.
But if I try to make a change to an existing item, I get the following error:
Update requires a valid UpdateCommand when passed DataRowCollection with modified rows.
What's the matter here? I want to be able to use the datagridview to make updates to the database without actually requiring to explicitly create any SQL commands.