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
Explain the advantage of ADO.Net?
Define table relations?
What is the difference between Response.Expires and Reponse.ExpiresAbsolute?
What is disconnected data?
Command objects uses, purposes and their methods.
Explain executenonquery?
What is ado.net in vb net?
How to check if the Dataset has records ?
Explain the two fundamental objects in ado.net?
What are the namespaces used in ado.net for data access?
Compare Data Reader & Dataset in ado.net?
Which is faster datareader or dataadapter?
Explain all the classes those are used for database connections between sql server and asp.net?
What is ambient transaction?
How to creating a SqlCommand Object?