blah blah blah is here! blah blah » Close

0
votes
1 answers

Getting update error:Update requires a valid UpdateCommand when passed DataRow collection with modified rows.

When i try to update my dataset i get the following error: Update requires a valid UpdateCommand when passed DataRow collection with modified rows. Below is my code: [code]this.Validate(); this.salesBinding ...

0
votes
1 answers

Updating product table with count of items sold

I have a Products table with columns: ProductID INT PK SoldCount INT My other table, ItemsSold, contains items sold: ProductID INT FK Quantity INT So this is a many to one relationship. I want to update the Product.SoldCo ...

Feedback