If a dataset contains 100 rows, how to fetch rows between 10
and 20 only ?
Answer Posted / tiger kumar
We have the option of the fetching the starting record and
the maximum record options.
_dataadapter.Fill(_dset,"Test",11,10);
It will retrieve the record from 11 to next 10 records.
| Is This Answer Correct ? | 11 Yes | 2 No |
Post New Answer View All Answers
What are the namespaces used in ADO.Net to connect to a database?
What is data access pattern?
What is ado.net objects?
What is difference between connected and disconnected architecture in ado.net?
Does ado.net use odbc?
What Is Difference Between Ado And Ado.net?
What is sqldatareader in ado.net?
How can we save all data from dataset?
What is the significance of CommandBehavior.CloseConnection ?
Which is the best method to get two values from the database?
How can we load multiple tables in a dataset?
Compare Data Reader & Dataset in ado.net?
Why do we serialize data?
Define different execute methods of ADO.NET command object ?
What are the usages of the command object in ado.net?