'Create the table
Dim Table1 As DataTable
Table1 = New DataTable
'Add columns to it
Table1.Columns.Add("Id", Type.GetType("System.Int32"))
Table1.Columns.Add("Name", Type.GetType("System.String"))
'Add rows and fill with data
Dim EditRow As DataRow
EditRow = Table1.NewRow()
EditRow(0) = 1
EditRow(1) = "John"
Table1.Rows.Add(EditRow)
EditRow = Table1.NewRow()
EditRow(0) = 2
EditRow(1) = "Jane"
Table1.Rows.Add(EditRow)
'Create a dataset and add this table to it
Dim DS As DataSet
DS = New DataSet
DS.Tables.Add(Table1)
Crete Temporary Table on VB.NET using DataTable
Labels:
VB.NET
0 komentar:
Posting Komentar