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 the use of ADO.NET and XML web services?
What is ado and dao?
Which is faster sqldataadapter and sqldatareader?
What is the meaning of executenonquery?
The answers which posted above is not satisfied my requirement? Can some one post teh exact answer? Thanx
How can you add or remove rows from the datatable object of dataset?
What is ado.net objects?
What is ado.net architecture?
Which database is the ado.net sql connection object designed for?
What is ole2 format?
What is shadow copy?
What is a serialized object?
How to creating a SqlCommand Object?
What is ado connection?
How do you connect to sql server database without using sqlclient?