Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Hhhhow to Reference a DataSet Field
Message
Information générale
Forum:
ASP.NET
Catégorie:
Autre
Divers
Thread ID:
00720845
Message ID:
00721238
Vues:
14
Hi,

Does the Rows(0) indicate the current row or row 0 of the dataset?

Thanks
Roland
===================================================

>Its almost the same. VB uses () instead of []
>
>sAddress = ds1.Tables("Customer").Rows(0)("Name")
>
>
>
>>I don't do VB, but I'm pretty sure the syntax is the same for VB as it is for C#.
>>
>>Regular DataSet :
>>
>>sAddress = (string)ds1.Tables["Customer"].Rows[0]["Name"]
>>
>>-or-
>>
>>sAddress = ds1.Tables["Customer"].Rows[0]["Name"].ToString()
>>
>>
>>Typed DataSet :
>>
>>sAddress = ds1.Customer[0].Name
>>
>>
>>
>>HTH,
>>~~Bonnie
>>
>>
>>
>>>Hi,
>>>
>>>Using VB.net
>>>WinForm
>>>SqlAdapter
>>>
>>>How do you reference a DataSet Field Name directly in code to fill a variable?
>>>
>>>The following lines do not work.
>>>
>>>Public sAddress AS String
>>>
>>>sAddress = Ds1.Customer.Name
>>>sAddress = Customer.Name
>>>sAddress = Name
>>>
>>>What is the proper code?
>>>
>>>Thanks
>>>roland
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform