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
Which method in OLEDBAdapter is used to populate dataset with records?
What is difference between datagridview and datagrid control in winforms?
What two types of data providers does ADO.NET supply? What determines which one you should use?
What Is Difference Between Ado And Ado.net?
What is ado.net objects?
What is the meaning of object pooling?
Can we do database operations without using any of the ado.net objects?
How can we add relation between tables in a dataset?
How to connect and retrieve data from database using dataset
Which object holds only data and does not interact with data source?
What are the namespaces used in ado.net for data access?
What is data reader in ado.net?
What is connection string?
What does sqldatareader return?
What is the difference between Optimistic and Pessimistic locking?