TableAdapters provide communication between your application and a database by executing SQL statements and stored procedures against a database. In addition to the standard functionality of a DataAdapter, TableAdapters provide additional queries that share a common schema with the associated typed DataTable. The TableAdapter loads the returned data into its associated data table in your application, or returns new data tables already populated with data.
In This Section
- TableAdapter Overview
-
Explains what TableAdapters are and the tools available to create them.
- TableAdapter Configuration Wizard
-
Describes how to run the wizard and provides details for each wizard screen.
- TableAdapter Query Configuration Wizard
-
Describes how to run the wizard and provides details for each wizard screen.
- Working with Null Values in TableAdapters
-
Provides the steps for enabling null values in TableAdapter parameters.
- How to: Create TableAdapters
-
Provides the steps to create a new TableAdapter.
- How to: Edit TableAdapters
-
Provides the steps to edit existing TableAdapters.
- How to: Create TableAdapter Queries
-
Provides the steps to add a query to an existing TableAdapter.
- How to: Edit TableAdapter Queries
-
Provides the steps to edit existing TableAdapter queries.
- How to: View the Queries in a TableAdapter
-
Explains how to view the existing queries in a TableAdapter.
- How to: Extend the Functionality of a TableAdapter
-
Provides the steps for creating a partial class for the TableAdapter where you can add code in addition to the designer-generated code.
- How to: Create Parameterized TableAdapter Queries
-
Provides the steps to create TableAdapter queries that accept parameters.
- How to: Add Global Queries to a Dataset
-
Provides the steps to create a TableAdapter with a query that returns a single value.
- How to: Execute TableAdapter Queries
-
Provides the steps to execute TableAdapter queries.
- Walkthrough: Creating a TableAdapter with Multiple Queries
-
Provides step-by-step instructions for creating a TableAdapter and adding a query to it.