Very very new to visual basic.net (first day actually) but struggling already with the basics. I am attempting to create a single form application taking data from an existing MS Access database using SQL query. All works great, I can fill the dataset, seek, sort and display all my data and make changes to records within the dataset but when I try to write the values back to the database using the command
objOwnerDA.Update(objDataSet, "Owners")
I get the error:
Update unable to find TableMapping or DataTable 'Owners'.
Assuming the problem was with my coding I downloaded source code accompanying another of my tutorial books but that gives me the same error when I try to update the database. It is reassuring that it is not my coding but extremely frustrating none the less.
Any suggestions (keep them simple please) greatly appreciated.