S
Steffi
Hello,
I want to set the schema of a DataTable. It should have the same structure
than my Datatable in SQL Server. The last column is a Timestamp called
Stempel. Timestamp is treaten an a Byte-Array. What can I do to set the Type
for this column?
Dim myDataTable As DataTable = New DataTable("Adressen")
myDataTable.Columns.Add("ID", Type.GetType("System.Int32"))
myDataTable.Columns.Add("Vorname", Type.GetType("System.String"))
myDataTable.Columns.Add("Nachname", Type.GetType("System.String"))
myDataTable.Columns.Add("Stempel", Type.GetType("???"))
Thank you
Steffi
I want to set the schema of a DataTable. It should have the same structure
than my Datatable in SQL Server. The last column is a Timestamp called
Stempel. Timestamp is treaten an a Byte-Array. What can I do to set the Type
for this column?
Dim myDataTable As DataTable = New DataTable("Adressen")
myDataTable.Columns.Add("ID", Type.GetType("System.Int32"))
myDataTable.Columns.Add("Vorname", Type.GetType("System.String"))
myDataTable.Columns.Add("Nachname", Type.GetType("System.String"))
myDataTable.Columns.Add("Stempel", Type.GetType("???"))
Thank you
Steffi