If I call a tableadapter.fill to populate a dataset table and then amend the data in that table should this way be posible?
Me.myDataSet.System.Rows(0).item(0) = value
When I call the .update followiung this I get the error:
'Update requires a valid UpdateCommand when passed DataRow collection with modified rows.'
But when I look in dataset designer the configuration creates the insert, update delete etc commands?
Thanks
PS the table does have a primary key and the dataset designer tichs the created update command entyr?
Me.myDataSet.System.Rows(0).item(0) = value
When I call the .update followiung this I get the error:
'Update requires a valid UpdateCommand when passed DataRow collection with modified rows.'
But when I look in dataset designer the configuration creates the insert, update delete etc commands?
Thanks
PS the table does have a primary key and the dataset designer tichs the created update command entyr?
Last edited: