Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Creating dataset container for custom data
Message
From
16/03/2006 11:48:38
 
 
To
16/03/2006 11:46:04
General information
Forum:
ASP.NET
Category:
Databases
Miscellaneous
Thread ID:
01104691
Message ID:
01104930
Views:
9
>Thanks, this is exactly what I was looking for.<

You're welcome! =)

~~Bonnie



>>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.
Bonnie Berent DeWitt
NET/C# MVP since 2003

http://geek-goddess-bonnie.blogspot.com
Previous
Reply
Map
View

Click here to load this message in the networking platform