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
Give an example that shows how to execute a stored procedure in ado.net?
What is Data view?
What is the default provider in ado.net?
Which database is the ado.net sql connection object designed for?
Explain how to call the sql commands asynchronously in ado.net version 2.0?
How to maintain the relation between two tables in ADO.NET?
What are the advantages using ado.net?
What is the difference between data reader and data adapter?
What is data adapter in ado.net with example?
What is acid in ado.net?
What is the use of sqldatareader class?
What is the difference between statement and preparedstatement interface?
What providers does Ado.net uses?
What is the difference between Dataset. clone and Dataset.copy?
how we can fire event in databound coulm in datagfrid withot using button?