Question on ASP.Net 2.0...
what is Table Adapter?
Regards,
Satheesh
TableAdapters provide communication between your application and a
database. More 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.
IT is similiar to DataApapter of ASP.NET,with a built-in connection
object and the ability to contain multiple queries.
NorthwindDataSet northwindDataSet = new NorthwindDataSet();
NorthwindDataSetTableAdapters.CustomersTableAdapter
customersTableAdapter =
new NorthwindDataSetTableAdapters.CustomersTableAdapter();
customersTableAdapter.Fill(northwindDataSet.Customers);
You can read more on MSDN.com
Regards
Thread