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
What is a column variable?
What is the difference between executenonquery () and executescalar ()?
What are good ado.net object to replace to ado recordset object.
Define isolation?
How to creating a SqlCommand Object?
How to find the given query is optimised one or not?
How do we use stored procedure in ADO.NET and how do we provide parameters to the stored procedures?
What is basic use of data view?
Describe briefly an ADO.NET Dataset ?
What is ado.net object model?
What is the difference between a datareader and a dataset?
What are the different execute methods of Ado.Net?
differance between ADO vs ADO.Net?
Explain the architecture of ado.net?
What Is Difference Between Ado And Ado.net?