Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Creating dataset container for custom data
Message
From
16/03/2006 11:46:04
 
 
To
16/03/2006 10:02:49
General information
Forum:
ASP.NET
Category:
Databases
Miscellaneous
Thread ID:
01104691
Message ID:
01104927
Views:
14
>You mean something like this?
>
>Dim ds As DataSet = New DataSet
>ds.Tables.Add("MyTable")
>ds.Tables(0).Columns.Add("MyColumnInt", GetType(System.Int32))
>ds.Tables(0).Columns.Add("MyColumnString", GetType(System.String))
>
>Dim row As DataRow = ds.Tables(0).NewRow
>row("MyColumnInt") = 5
>row("MyColumnString") = "my string"
>ds.Tables(0).Rows.Add(row)
>
Thanks, this is exactly what I was looking for.
Michel Fournier
Level Extreme Inc.
Designer, architect, owner of the Level Extreme Platform
Subscribe to the site at https://www.levelextreme.com/Home/DataEntry?Activator=55&NoStore=303
Subscription benefits https://www.levelextreme.com/Home/ViewPage?Activator=7&ID=52
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform