If a dataset contains 100 rows, how to fetch rows between 10
and 20 only ?
Answer Posted / vijay
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 ? | 7 Yes | 4 No |
Post New Answer View All Answers
How would you connect to a database by using .NET?
Which is the best method to get two values from the database?
What is ado.net tutorial?
What are the Features of a dataset
What are the different methods by which we can populate a dataset?
What are dataproviders?
What is ole db and odbc?
What is data access pattern?
What does adodb stand for?
Compare Data Reader & Dataset in ado.net?
What are the differences between OLEDB and SQLClient Providers?
Which object of ado contains datarow datacolumn collection?
How do you update a dataset in ado.net?
What are the key features of ado.net?
What is an orm, and why would you use one instead of plain old ado.net?