Getting data to manipulate

fkheng

Well-known member
Joined
May 8, 2003
Messages
155
Location
Malaysia
In VB6, to get data to manipulate, all i had to do was to create the recordset, and use the recordset variable to reference to specific fields to obtain the values...

like rs!Field1...

i am quite confused in .NET, how do I do it here?

from sometutorials ive read, im still confused, u mean we can populate datasets table collections with our own data without linking to an actual database?

if i do anyway, how do i achieve the aforementioned issue?
 
Use DataReader and Command.Executexxx if you want functionality similar to Recordsets from VB6.
 
Back
Top