A
Andrew
I'm new to ADO.NET, and trying to understand...
Say you have a disconnected DataSet generated by "SELECT * FROM
MyTable WHERE ID = 1". The DataSet is edited and passed back into a
data component for update. For instance:
Persistence.Store(myDataSet);
Assuming Persistence.Store knows the data connection, how do you
update the database? Where does the SQL UPDATE statement come from?
The previous version of ADO saved the UPDATE statement, but ADO.NET
doesn't.
Say you have a disconnected DataSet generated by "SELECT * FROM
MyTable WHERE ID = 1". The DataSet is edited and passed back into a
data component for update. For instance:
Persistence.Store(myDataSet);
Assuming Persistence.Store knows the data connection, how do you
update the database? Where does the SQL UPDATE statement come from?
The previous version of ADO saved the UPDATE statement, but ADO.NET
doesn't.