Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 MYSQL 数据库中有两个表,它们通过计数和名称包含相同的列,我将第一个表中的所有数据都放入 DataSet 但现在如果可能的话,我如何将此 dt 复制到第二个表中?
// 只复制新行。
DataSet addedDataSet= customerDataSet.GetChanges(DataRowState.Added);
// 复制所有更改。
DataSet changeDataSet = customerDataSet.GetChanges();
//创建完整副本
DataSet copyDataSet = customerDataSet.Copy();