One button submit that handles the work with the database

elianeasmar

Well-known member
Joined
Oct 3, 2013
Messages
76
Programming Experience
Beginner
Hello. I did the following:
Update-delete-insert in the dataset.
delete:
 dataset.customers.rows(0).delete()

insert:
anyrow(Name) = "qwerty"          anyrow(Address) = "azerty"   
          tablename.rows.add(anyrow)
update:
dataset.tables("tablename").rows(4).item("Name")="qwerty";
	  dataset.tables("tablename").rows(4).item("Address")="azerty";

not in the database.
And now i want my data to be updated in the database(sql server)
without using DataAdapter.

How can i do that?

Any help is appreciated.
Thank you
smiley_smile.gif
 
Back
Top