How to add new DataRow into DataTable?

后端 未结 8 1265
我在风中等你
我在风中等你 2021-02-02 06:48

I have a DataGridView binded to a DataTable (DataTable binded to database). I need to add a DataRow to the DataTable

8条回答
  •  离开以前
    2021-02-02 07:18

    I found dotnetperls examples on DataRow very helpful. Code snippet for new DataTable from there:

    static DataTable GetTable()
    {
        // Here we create a DataTable with four columns.
        DataTable table = new DataTable();
        table.Columns.Add("Weight", typeof(int));
        table.Columns.Add("Name", typeof(string));
        table.Columns.Add("Breed", typeof(string));
        table.Columns.Add("Date", typeof(DateTime));
    
        // Here we add five DataRows.
        table.Rows.Add(57, "Koko", "Shar Pei", DateTime.Now);
        table.Rows.Add(130, "Fido", "Bullmastiff", DateTime.Now);
        table.Rows.Add(92, "Alex", "Anatolian Shepherd Dog", DateTime.Now);
        table.Rows.Add(25, "Charles", "Cavalier King Charles Spaniel", DateTime.Now);
        table.Rows.Add(7, "Candy", "Yorkshire Terrier", DateTime.Now);
    
        return table;
    }
    

提交回复
热议问题