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 different between sqlcommand object and command behavior object?
How to store data in memory?
What are the parameters that control most of connection pooling behaviors?
What is an ado connection?
How many major types of connection objects in ADO.NET?
What is the purpose of using adodb?
What are the pre-requisites for connection pooling?
What is sqlconnection and sqlcommand?
Which object needs to be closed?
What are three methods for displaying data in a syncfusion datagrid
Which is better ole db or odbc?
What two types of data providers does ADO.NET supply? What determines which one you should use?
Explain the role of data provider in ado.net?
What are disadvantages of microsoft-provided data provider classes in ado.net?
What is shadow copy?