Click here to Skip to main content
15,887,415 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi All,

I have a table without primary key where I need to update a row using Dataset.When I was trying to update the row I am getting this error.
"Dynamic SQL generation for the UpdateCommand is not supported against a SelectCommand that does not return any key column information."

Can any one help me regarding this ?
Posted

1 solution

If you aren't returning primary key information, then no, you cannot use the dataset to update the information. In this situation you need to create your own delete and update commands manually and perform the operations that way.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900