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 ado control?
What are the data providers used in ado.net
Define Execute Reader?
Describe ado.net object model in detail.
What is microsoft ado.net?
What is the use of adodc?
differance between ADO vs ADO.Net?
What is typed dataset ?
What is namespace in ado.net?
What is the use of data grid?
What are the core objects of ADO.NET?
Explain ado.net features?
Is bulk insert faster than insert?
What are the methods of XML dataset object?
Explain how do you connect to sql server database without using sqlclient?