navigation bar
Database
2
Posts
2
Posters
0
Views
1
Watching
-
i want to make navigation bar in my appliction i want to know the methods in ADO.NET using C# to navigate records in database
A DataReader will retrieve rows in a database in a forward only fashion. You can use a DataAdapter to extract all the rows in one go and put them in a DataSet. You can then navigate at will because it uses indexes to retrieve the rows.
myDataSet[0].Tables[0].Row[i]
Upcoming Scottish Developers events: * UK Security Evangelists On Tour (2nd November, Edinburgh) * Developer Day Scotland: are you interested in speaking or attending? My: Website | Blog