如何用默认值添加行到System.Data.DataTable

本文关键字:System Data DataTable 添加行 何用 默认值 | 更新日期: 2023-09-27 18:17:05

我有DataTable,我需要用默认值添加row并将其保存到数据库中。

奖励:自动增加键列是很棒的。

我怎么才能做到呢?

如何用默认值添加行到System.Data.DataTable

static int i = 1;
private void CreateDefault()
{
    DataColumn column = null;
    DataTable table = new DataTable();
    column = new DataColumn();
    var Col1 = column;
    Col1.DataType = System.Type.GetType("System.Int32");
    Col1.DefaultValue = i;
    Col1.Unique = false;
    table.Columns.Add(column);
    i = i + 1;
    column = new DataColumn();
    var Col2 = column;
    Col2.DataType = System.Type.GetType("System.String");
    Col2.DefaultValue = "Your String";
    table.Columns.Add(column);
    DataRow row = null;
    row = table.NewRow();
    table.Rows.Add(row);
}

变量i将是自动递增键列。现在插入DataTableDataBase

您可以使用默认值添加新行,并像这样将其保存到数据库中。

using (var conn = new SqlConnection(connectionString))
{
    SqlCommand cmd = new SqlCommand("SELECT * FROM YourTableName", conn);
    SqlDataAdapter da = new SqlDataAdapter() { SelectCommand = cmd };
    // Load records to a DataSet
    DataSet ds = new DataSet();
    da.Fill(ds, "YourTableName");
    var table = ds.Tables["YourTableName"];
    // Add a new row with default value
    table.Rows.Add();
    // Reflect the change to database
    SqlCommandBuilder cb = new SqlCommandBuilder(da);
    da.Update(ds, "YourTableName");
}

同样,如果你已经设置了一个自动增量键,如MS SQL Server (https://msdn.microsoft.com/en-us/library/ms186775.aspx)的IDENTITY,这在插入新行时起作用