If a dataset contains 100 rows, how to fetch rows between 10
and 20 only ?
Answer Posted / satyambabu
Dataset consists of DataTable collection which consists of
DataRows. Create Dataset object, then create DataRow object
Dim objRow as New DataRow
objRow(9) to objTow(19) woud give the rows between 10 and
20, as first row is stored with index 0.
| Is This Answer Correct ? | 5 Yes | 3 No |
Post New Answer View All Answers
What is the significance of CommandBehavior.CloseConnection ?
Is it possible to edit data in Repeater control?
Compare Data Reader & Dataset in ado.net?
What are the advantages of ado.net?
Does sqlclient and oledb class share the same functionality?
Define data adapter?
What are the major challenges in accessing data from a database?
What are the objects of ado.net?
Give an example of a .net application which connects to microsoft access database using ado.net classes.
What is an ado?
What is openrowset?
What is read only and forward only in ado.net?
What DataReader class do in ADO.NET ?
What are the steps to connect to a database?
What is microsoft ado?