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
Give an example of a .net application which connects to microsoft access database using ado.net classes.
Which components of a data provider is used to retrieve, insert, delete, or modify data in a data source?
What is an ADO.Net?
What do you mean by ‘batch updates’?
How do we use stored procedure in ADO.NET and how do we provide parameters to the stored procedures?
What is the difference between the clone() and copy() methods of the dataset class?
What is a column variable?
What is connected architecture in ado.net?
If a table contains 20000 records . In a page at each time 100 records to be displayed what are the steps you will take to improve performance? Will you use dataset or datareader?
Which database is the ado.net?
Explain the difference between data reader and data adapter?
What is execute scalar in ado.net?
What is the difference between DataReader and DataSet in ADO.NET?
How many major types of connection objects in ADO.NET?
What is different between sqlcommand object and command behavior object?