hello,
I want to create a dataset/datatable from an ttx file (thats for Crystal Reports) and I have to mimic the ms sql server fieldtypes for that.
I create the columns like this:
Dim DS As DataSet = New DataSet("test")
Dim DT1 As DataTable = DS.Tables.Add("ORDERS")
DT1.Columns.Add("NUMMER", Type.GetType("System.Int32"))
My problem ist to find a "System.foobar" type to create a blob and a memo field.
can anybody help?
I want to create a dataset/datatable from an ttx file (thats for Crystal Reports) and I have to mimic the ms sql server fieldtypes for that.
I create the columns like this:
Dim DS As DataSet = New DataSet("test")
Dim DT1 As DataTable = DS.Tables.Add("ORDERS")
DT1.Columns.Add("NUMMER", Type.GetType("System.Int32"))
My problem ist to find a "System.foobar" type to create a blob and a memo field.
can anybody help?