C# สร้างดาต้าเทเบิล (create datatable)

วิธีสร้าง Datatable ด้วย C# 

ตัวอย่างที่ 1

DataTable dt_temp = new DataTable();
dt_temp.TableName = "Table1";
dt_temp.Columns.Add("xxx", Type.GetType("System.String"));   //ตั้งชื่อคอลัมภ์

DataRow r = default(DataRow);
r = dt_temp.NewRow();
r[“xxx”] = "——–";
dt_temp.Rows.Add(r);
       

ตัวอย่างที่ 2 

DataTable table = new DataTable();
table.Columns.Add("number", typeof(int));
table.Columns.Add("name", typeof(string));
table.Columns.Add("LastName", typeof(string));

// ใส่ข้อมูล 3 DataRows.
table.Rows.Add(1, "somchai", "jaidee");
table.Rows.Add(2, "mani", "deejai");
table.Rows.Add(3, "panupong", "chansang");

Comments

comments

You may also like...