Insert new row via dataset

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a dataset that filled by me via datatables, and data rows, and not by dataadaptor
How can I associate this table with DB table, in order to insert a new row into the DB
 
Provided the schemas match , it's all in the update logic of whatever
dataadapter you want.. just map the columns you want to head back to the db
to the columns in your datatable. when the values change, the rowstate will
change and then the dataadapter will see them, just add a valid
update/insert/delete statement and you're off to the races.

Cheers,

Bill
 
Back
Top