1
我想使用SqlDataAdapter
從一個數據庫表到另一個數據庫表,但是從其他表導入行後沒有效果數據插入到數據庫表數據未插入到數據庫表中的SqlDataAdapter更新後
代碼
DataTable table1 = objDataset1.Tables[0];
DataTable tb = table1.Clone();
DataSet ds = new DataSet();
string ConnString = @"DataSource=.\SQLExpress;Database=WICC;Trusted_Connection=true;Connection Timeout=180;";
SqlConnection con = new SqlConnection(ConnString);
SqlDataAdapter adapter = new SqlDataAdapter("SELECT * FROM tblSitePMRDetail", con);
SqlCommandBuilder build = new SqlCommandBuilder(adapter);
adapter.Fill(tb);
con.Open();
foreach (DataRow dr in table1.Rows)
{
tb.ImportRow(dr);
}
adapter.Update(tb);
con.Close();
表爲什麼不更新?