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 are the different ado.net namespaces?
How to check if the Dataset has records ?
Is it possible to edit data in Repeater control?
What is ado.net in vb net?
Explain why edit is not possible in repeater?
What are the difference between readonly vs. Const?
Which method is used to sort the data in ADO.Net?
What does datareader object do?
What is the difference between statement and preparedstatement interface?
What is ole used for?
how to create a quiz software using 4 options to answer and how to check with answers in the database and award marks....
What is difference between connected and disconnected architecture in ado.net?
What is data relation?
What is data relation in ado.net?
How can I retrieve two tables of data at a time by using data reader? Data reader read and forward only, how is it possible to get 2 tables of data at a time?