DataConnection Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents the base class from which each specific type of data connection is derived.
public ref class DataConnection abstract
public abstract class DataConnection
type DataConnection = class
Public MustInherit Class DataConnection
- Inheritance
-
DataConnection
- Derived
Remarks
Each data connection is used to retrieve data (inserted into the main data source or into a secondary data source) or to submit data.
A data connection used to retrieve or submit data for the main data source will correspond to one of the following data connection object types:
A data connection used to retrieve data for a secondary data source will correspond to one of the following data connection object types:
- AdoQueryConnection
- BdcQueryConnection
- FileQueryConnection
- SharePointListRWQueryConnection
- WebServiceConnection
A data connection used only for submitting data will correspond to one of the following data connection object types:
To access a DataConnection object for a particular kind of data connection, use the DataConnectionCollection object associated with the form template. To access the DataConnectionCollection object, use the DataConnections property of the XmlForm class.
To use the properties or methods of the object returned from the DataConnectionCollection, you must cast that object to the type that represents the kind of data connection you are working with before you can access those members. For example, to work with an AdoQueryConnection object (which represents a data connection for retrieving data from an Access or SQL Server database), you must cast the object returned from the DataConnectionCollection as shown in the following examples.
// Get the Employees connection from the
// DataConnections collection.
AdoQueryConnection myAdoQueryConnection =
(AdoQueryConnection)(this.DataConnections["Employees"]);
' Get the Employees connection from the
' DataConnections collection.
Dim myAdoQueryConnection As AdoQueryConnection = _
DirectCast(Me.DataConnections("Employees"), AdoQueryConnection)
For more information about working with data connections, see How to: Access External Data Sources.
Constructors
DataConnection() |
Properties
Name |
Gets the name of the data connection. |
Methods
Execute() |
Depending on which ConnectionTypeConnection class it is called from, executes a submit or query operation on the data connection using the declaratively defined values for the submitted data, query parameters, or data to retrieve. |