I have two .sdf databases and I need to merge them. So, I loaded the data from the two files into datasets and then called the dataset.merge(); function. Now, I have the merged dataset ready but I am not sure how I am going to update the sdf file from the dataset. Please help I have been trying for a while . The problem is how do I get the data in the dataset into an sdf file. I did use the CeAdapter.update(firstDataset) but I am getting the following error
Update unable to find TableMapping['Table'] or DataTable 'Table'
using VS 2010 and C# SqlCE 3.5,
Thanks in advance, Sean
The sdf database has around 90 tables, so first I get all the tables' names and insert them into a datatable. Then, I do the following to create the dataset,
for (int i = 0; i < dataset.tables["table_name"].Rows.Count; i++)
{
//dataset.table has the names of the tables in one col ; getting the table name
string tableName = dataset.tables[" table_name "].rows[i] [" table_name "].tostring();
firstDataSet.Tables.Add(tableName);
CeAdapter = new SqlCeDataAdapter("select * from " + tableName, Conn);
CeAdapter.fill(firstDataSet.Tables[tableName]);
}
//after the loop, firstDataSet has the 90 tables with their data. Now, after I do some adding and deleting to the data in the dataset, How can I put the data back in the sdf database. The merge function is working on the dataset.
Thanks a lot