Hello,
I have a empty oldDataSet. Then with the proper adapter i Fill a new DataSet newDataSet with two tables (Table1 and Table2) that dont exist in oldDataSet.
Then i do oldDataSet.Merg e(newDataSet) and the tables from newDataSet dont appear in oldDataSet.
I need it to "update" a dataset from a sql server, so i construct the sql server adapter that fills the newDataSet and then i need to upload the results to existing oldDataSet. But if oldDataSet dont have a table that newDataSet has the table dont appears in oldDataSet after Merge().
Can anyone help me?
Thank you
I have a empty oldDataSet. Then with the proper adapter i Fill a new DataSet newDataSet with two tables (Table1 and Table2) that dont exist in oldDataSet.
Then i do oldDataSet.Merg e(newDataSet) and the tables from newDataSet dont appear in oldDataSet.
I need it to "update" a dataset from a sql server, so i construct the sql server adapter that fills the newDataSet and then i need to upload the results to existing oldDataSet. But if oldDataSet dont have a table that newDataSet has the table dont appears in oldDataSet after Merge().
Can anyone help me?
Thank you
Comment