Answer Posted / guest
foreach(DataTable thisTable in myDataSet.Tables){
// For each row, print the values of each column.
foreach(DataRow myRow in thisTable.Rows)}
| Is This Answer Correct ? | 3 Yes | 8 No |
Post New Answer View All Answers
What is connection pooling and what is the maximum pool size in ado.net connection string?
What is the use of data grid?
What is disconnected scenario in entity framework?
What is ole data type?
What is command class in ado.net?
What are the different namespaces used in the project to connect the database? What data providers available in .net to connect to database?
What is the difference between OLEDB Provider and SqlClient?
What are the 3 major types of connection objects in ado.net?
What is executequery?
Which one of the following objects is a high-level abstraction of the connection and command objects in ado.net?
What is execute reader in ado.net?
What is the usage of the dataset object in ado.net?
How can you add or remove rows from the datatable object of dataset?
What is the hierarchy of data in databases?
how you will deal result set? How do you sort a dataset?If a dataset contains 100 rows, how to fetch rows between 5 and 15 only?