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

link|improve this question
is this a one time thing or an automation tool? Are you merging just data or schema too? Maybe you can show us the code you're using to populate the datasets – DustinDavis May 12 '11 at 19:21
Are the data structure equal in both databases? – ibram May 12 '11 at 19:24
Thanks a lot for the reply, both databases are identical in structure, and it should be available to the user mean it is not one time thing. I am merging just Data, the Schema is the same, thanks again, please any idea – user751097 May 12 '11 at 20:53
I edited my post to show some code. – user751097 May 12 '11 at 20:56
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.