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データベースに2つのテーブルがあり、カウントと名前で同じ列が含まれています。最初のテーブルからDataSetにすべてのデータがありますが、可能であれば、このdtを2番目のテーブルにコピーするにはどうすればよいですか?
//新しい行のみをコピーします。
DataSet addedDataSet= customerDataSet.GetChanges(DataRowState.Added);
//すべての変更をコピーします。
DataSet changeDataSet = customerDataSet.GetChanges();
//完全なコピーを作成します
DataSet copyDataSet = customerDataSet.Copy();