如何将数据添加到具有5列的DataTable?
我正在使用C ++(CLI)。
答案 0 :(得分:2)
来自MSDN
void AddRow(DataTable^ myTable){
DataRowCollection^ rc;
DataRow^ myNewRow;
// Create an array with three elements.
Object rowVals[] = gcnew Object[3];
rc = myTable->Rows;
rowVals[0] = S"hello";
rowVals[1] = S"world";
rowVals[2] = S"two";
// Add and return the new row.
myNewRow = rc->Add(rowVals);
}
您需要向rowVals添加两个新值,然后您就可以了 (P.S.我用语法将语法改为cli语法,它可能无法完全按原样编译,但应该足以使用)