Select from following answers:- A typed TableAdapter

- SqlDataReader
- SqlDataAdapter
- All Above
TableAdapters provide communication between your application and a database. Specifically, a TableAdapter connects to a database, executes queries or stored procedures, and either returns a new data table populated with the returned data or fills an existing DataTable with the returned data. TableAdapters are also used to send updated data from your application back to the database. Think of a TableAdapter as a DataAdapter with a built-in connection object and the ability to contain multiple queries. Each query added to a typed TableAdapter is exposed as a public method that is simply called like any other method or function on an object.
Show Correct Answer
Source: MeasureUp.Com | |
Alert Moderator