简体   繁体   中英

how to insert data to dataset

i have this making table:

DataTable WorkTbl()
        {
            DataTable Work= new DataTable("Work"); //Table Name
            DataColumn MAC = new DataColumn("MAC", typeof(string));
            DataColumn ID_OLD = new DataColumn("ID_OLD", typeof(string));

            Work.Columns.Add(MAC);
            Work.Columns.Add(ID_OLD);
            return Work;
        }

how to insert data to this table and how to convert this table to Dataset?

thanks in advance

From MSDN:

DataRow workRow = workTable.NewRow();

You then can manipulate the newly added row using an index or the column name, as shown in the following example.

workRow["CustLName"] = "Smith";
workRow[1] = "Smith";


DataSet customerOrders = new DataSet("CustomerOrders");

DataTable ordersTable = customerOrders.Tables.Add("Orders");

DataColumn pkOrderID = 
    ordersTable.Columns.Add("OrderID", typeof(Int32));
ordersTable.Columns.Add("OrderQuantity", typeof(Int32));
ordersTable.Columns.Add("CompanyName", typeof(string));

ordersTable.PrimaryKey = new DataColumn[] { pkOrderID };

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM