0
我想連接到我的NorthwindDataSet,當用戶單擊按鈕時,我希望將數據保存回數據庫。當我運行下面的代碼時,我沒有得到任何錯誤,但數據沒有保存。我想我正確連接到DataSet,我不知道爲什麼這不會挽回。更改沒有保存回數據庫
NorthwindDataSetTableAdapters.CustomersTableAdapter north = new NorthwindDataSetTableAdapters.CustomersTableAdapter();
NorthwindDataSet.CustomersDataTable northtable = north.GetData();
NorthwindDataSet northwindDataSet1 = new NorthwindDataSet();
NorthwindDataSet.CustomersRow newCustomersRow =
northwindDataSet1.Customers.NewCustomersRow();
newCustomersRow.CustomerID = "5";
newCustomersRow.CompanyName = "Alfreds Futterkiste";
northwindDataSet1.Customers.Rows.Add(newCustomersRow);
northwindDataSet1.Customers.AcceptChanges();
我已經使用過這些東西了,但DataSet和DataAdapter之間的連接是什麼?我期望CustomersTableAdapter實例通過Update()或自定義方法進行更新。 – 2013-05-10 11:48:47
您是否需要在TableAdapter上調用Update方法? – 2013-05-10 11:48:58