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
Describe the disconnected architecture of ADO.NET’s data access model.
Why do we use sqldataadapter?
What is difference between connected and disconnected architecture in ado.net?
Compare Data Reader & Dataset in ado.net?
What does executequery return?
Explain the different row versions available in table?
Which method is used by command class to execute SQL statements that return single value?
What is data reader in ado.net?
Is datareader faster than datatable?
What are the different row versions available in table?
What is datasource in ado.net?
What is an ado?
Explain how to create dynamic gridview?
What is the role of the dataset object in ado.net?
What is aggregating data ?