If a dataset contains 100 rows, how to fetch rows between 10
and 20 only ?
Answer Posted / ramesh
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
| Is This Answer Correct ? | 4 Yes | 6 No |
Post New Answer View All Answers
What is ado control?
Explain executenonquery?
What are the pre-requisites for connection pooling?
Difference between sqlcommand and sqlcommandbuilder?
What are the Data providers in ADO.Net?
How to find the given query is optimised one or not?
If a table contains 20000 records. In a page at each time 100 records to be displayed.
What are the advantages using ado.net?
What is command class in ado.net?
Is bulk insert faster than insert?
What is disconnected scenario in entity framework?
What is the difference between Command and CommandBuilder object?
What Is Difference Between Ado And Ado.net?
What does executequery return?
What is an orm, and why would you use one instead of plain old ado.net?