Answer Posted / dinesh shrimali
Data adapter is bridge between Connection and DataSet ,
Data adapter in passing the sql query and fill in dataset
Eg.
Dim sqlStr as string
Dim DA as SqlDataAdapter
Dim DS As New DataSet
Sqlstr=”SELECT * FROM emp”
DA=New SqlDataAdapter(sqlstr, “Connection name”)
DA.Fill(DS)
| Is This Answer Correct ? | 74 Yes | 10 No |
Post New Answer View All Answers
What is ole data type?
What are the differences between OLEDB and SQLClient Providers?
Explain sqlconnection object?
Which is faster sqldataadapter and sqldatareader?
How to perform sorting on a table in ADO.NET?
What is DataReader Object?
Can we load multiple tables in a dataset?
What is an orm, and why would you use one instead of plain old ado.net?
What are the types of databinding?
What are the rules to implement connection pooling?
What provider ado.net use by default? Explain the role of data provider in ado.net? What is the role of data provider in ado.net?
What is ado.net and its features?
How to check if the Dataset has records ?
What is ado rdo dao in visual basic?
What DataReader class do in ADO.NET ?