Write data do Database

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

Guest

I have a SQLConnection, SQLdataAdapter and a Dataset. The Dataset is
connected to a Grid. I can insert, update and delete data on the grid, but I
can only update my Database if push a button(save : Dataadaper.update(..)).
I would like to know if there is a way to update the database after the
insert, update or delete command, automatically.
 
You can capture those events through the grid and just fire update whenever
they occur.
 
Back
Top