默認值分配和列尚未分配的值。因此,更改架構時,現有行將不會更新。如果您想要更新表並將默認值應用於現有行的通用方法,那麼Id會創建一個方法,將行從當前數據表複製到新數據表中,並在其中包含額外的列。例如:
void doTableStuff()
{
DataTable table1 = makeTable();
table1.Rows.Add(new string[] { "Frederic", "Robert" });
table1 = updateTable(table1);
if (table1.Rows[0]["Sam"] == "Samantha")
{
Console.WriteLine("I Was Right!");
}
else
{
Console.WriteLine("I Was Wrong!");
}
}
DataTable makeTable()
{
DataTable dt = new DataTable();
dt.Columns.Add(new DataColumn { ColumnName = "Fred", DataType = typeof(string), DefaultValue = "fred" });
dt.Columns.Add(new DataColumn { ColumnName = "Bob", DataType = typeof(string), DefaultValue = "bob" });
return dt;
}
DataTable updateTable(DataTable oldTable)
{
DataTable newTable = makeTable();
newTable.Columns.Add(new DataColumn { ColumnName = "Sam", DataType = typeof(string), DefaultValue = "Samantha" });
newTable.Merge(oldTable, true, MissingSchemaAction.Add);
return newTable;
}
對不起,我沒有嘗試運行這個,但你應該明白了。希望工程。
乾杯
一些代碼需要 –
您可以使用obj_dataTable.Columns [列名],而不是查找索引。 – Carra
@Carra:Thnx .... – Royson