If a dataset contains 100 rows, how to fetch rows between 10
and 20 only ?
Answer Posted / raghwendra ji chaubey
SqlDataAdapter sda = new SqlDataAdapter(sqlquery , con);
DataSet ds = new DataSet();
sda.Fill(ds);
sda.Fill(ds, 3, 2, "SrcTables");
| Is This Answer Correct ? | 5 Yes | 2 No |
Post New Answer View All Answers
How to load multiple tables into a dataset?
What are dcl commands?
What is dbcontext and dbset in entity framework?
What are the types of databinding?
Why ca not we use multiple inheritance and garbage collector paralelly in .net?
What is ambient transaction?
What is connection string?
I loaded the dataset with a table of 10 records. One of the records is deleted from the backend, how do you check whether all the 10 records were present while updating the data(which event and steps) and throw the exception 28 can datareader hold data from multiple tables?
What is csdl entity framework?
What are the benefits of using of ADO.NET in .NET 4.0?
What is a string variable?
How will you fill the gridview by using datatable object at runtime?
What is difference between Dataview and Datatable?
What are the important features of ado.net 2.0?
Explain ODP.net