Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Creating dataset container for custom data
Message
De
16/03/2006 11:46:04
 
 
À
16/03/2006 10:02:49
Information générale
Forum:
ASP.NET
Catégorie:
Bases de données
Divers
Thread ID:
01104691
Message ID:
01104927
Vues:
12
>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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform