You load data into your application by executing TableAdapter queries, or by calling the Fill method of a data adapter. You execute SQL statements and stored procedures by calling TableAdapter queries, or by executing methods on Command objects. The following topics describe how to fetch data and how to execute SQL statements and stored procedures.
In This Section
Reference
- DataSet
-
Represents an in-memory cache of data.
- DataTable
-
Represents one table of in-memory data.
- DataRow
-
Represents a row of data in a DataTable.
- SqlCommand
-
Represents a Transact-SQL statement or stored procedure to execute against a SQL Server database.
- OleDbCommand
-
Represents an SQL statement or stored procedure to execute against a data source.
- OracleCommand
-
Represents an SQL statement or stored procedure to execute against an Oracle database.
- OdbcCommand
-
Represents an SQL statement or stored procedure to execute against a data source.
Related Sections