我正在尝试在两个数据库之间同步两个表。我认为最好的方法是使用DataTable.Merge方法。这似乎可以解决这些变化,但是没有任何东西可以提交给数据库。
到目前为止,我有:
string tableName = "[Table_1]";
string sql = "select * from " + tableName;
using (SqlConnection sourceConn = new SqlConnection(ConfigurationManager.ConnectionStrings["source"].ConnectionString))
{
SqlDataAdapter sourceAdapter = new SqlDataAdapter();
sourceAdapter.SelectCommand = new SqlCommand(sql, sourceConn);
sourceConn.Open();
DataSet sourceDs = new DataSet();
sourceAdapter.Fill(sourceDs);
using (SqlConnection targetConn = new SqlConnection(ConfigurationManager.ConnectionStrings["target"].ConnectionString))
{
SqlDataAdapter targetAdapter = new SqlDataAdapter();
targetAdapter.SelectCommand = new SqlCommand(sql, targetConn);
SqlCommandBuilder builder = new SqlCommandBuilder(targetAdapter);
targetAdapter.InsertCommand = builder.GetInsertCommand();
targetAdapter.UpdateCommand = builder.GetUpdateCommand();
targetAdapter.DeleteCommand = builder.GetDeleteCommand();
targetConn.Open();
DataSet targetDs = new DataSet();
targetAdapter.Fill(targetDs);
targetDs.Tables[0].TableName = tableName;
sourceDs.Tables[0].TableName = tableName;
targetDs.Tables[0].Merge(sourceDs.Tables[0]);
targetAdapter.Update(targetDs.Tables[0]);
}
}
目前,源中有一行不在目标中。永远不会转移此行。我也用空目标试了一下,没有任何东西被转移。
答案 0 :(得分:0)
我知道这不是直接回答你的问题,但是你看过Microsoft Sync Framework吗?
它的目的是做这类事情,并且大部分(如果不是全部)驴工作都适合你。
答案 1 :(得分:0)
这可能有点矫枉过正,但您可以尝试Sync Framework from Microsoft