Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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:

  1. Added a datagridview from the toolbox.
  2. Added new project datasource (this datasource, AllDB_dataset has a lot of tables).
  3. 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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.