DbConnection Class
Represents a connection to a database.
Assembly: System.Data (in System.Data.dll)
| Name | Description | |
|---|---|---|
![]() | DbConnection() | Initializes a new instance of the DbConnection class. |
| Name | Description | |
|---|---|---|
![]() | CanRaiseEvents | Gets a value indicating whether the component can raise an event.(Inherited from Component.) |
![]() | ConnectionString | Gets or sets the string used to open the connection. |
![]() | ConnectionTimeout | Gets the time to wait while establishing a connection before terminating the attempt and generating an error. |
![]() | Container | Gets the IContainer that contains the Component.(Inherited from Component.) |
![]() | Database | Gets the name of the current database after a connection is opened, or the database name specified in the connection string before the connection is opened. |
![]() | DataSource | Gets the name of the database server to which to connect. |
![]() | DbProviderFactory | Gets the DbProviderFactory for this DbConnection. |
![]() | DesignMode | |
![]() | Events | |
![]() | ServerVersion | Gets a string that represents the version of the server to which the object is connected. |
![]() | Site | |
![]() | State | Gets a string that describes the state of the connection. |
| Name | Description | |
|---|---|---|
![]() | BeginDbTransaction(IsolationLevel) | Starts a database transaction. |
![]() | BeginTransaction() | Starts a database transaction. |
![]() | BeginTransaction(IsolationLevel) | Starts a database transaction with the specified isolation level. |
![]() | ChangeDatabase(String^) | Changes the current database for an open connection. |
![]() | Close() | Closes the connection to the database. This is the preferred method of closing any open connection. |
![]() | CreateCommand() | Creates and returns a DbCommand object associated with the current connection. |
![]() | CreateDbCommand() | Creates and returns a DbCommand object associated with the current connection. |
![]() | CreateObjRef(Type^) | Creates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object.(Inherited from MarshalByRefObject.) |
![]() | Dispose() | |
![]() | Dispose(Boolean) | |
![]() | EnlistTransaction(Transaction^) | Enlists in the specified transaction. |
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetLifetimeService() | Retrieves the current lifetime service object that controls the lifetime policy for this instance.(Inherited from MarshalByRefObject.) |
![]() | GetSchema() | Returns schema information for the data source of this DbConnection. |
![]() | GetSchema(String^) | Returns schema information for the data source of this DbConnection using the specified string for the schema name. |
![]() | GetSchema(String^, array<String^>^) | Returns schema information for the data source of this DbConnection using the specified string for the schema name and the specified string array for the restriction values. |
![]() | GetService(Type^) | |
![]() | GetType() | |
![]() | InitializeLifetimeService() | Obtains a lifetime service object to control the lifetime policy for this instance.(Inherited from MarshalByRefObject.) |
![]() | MemberwiseClone() | |
![]() | MemberwiseClone(Boolean) | Creates a shallow copy of the current MarshalByRefObject object.(Inherited from MarshalByRefObject.) |
![]() | OnStateChange(StateChangeEventArgs^) | Raises the StateChange event. |
![]() | Open() | Opens a database connection with the settings specified by the ConnectionString. |
![]() | OpenAsync() | An asynchronous version of Open, which opens a database connection with the settings specified by the ConnectionString. This method invokes the virtual method OpenAsync with CancellationToken.None. |
![]() | OpenAsync(CancellationToken) | This is the asynchronous version of Open. Providers should override with an appropriate implementation. The cancellation token can optionally be honored. The default implementation invokes the synchronous Open call and returns a completed task. The default implementation will return a cancelled task if passed an already cancelled cancellationToken. Exceptions thrown by Open will be communicated via the returned Task Exception property. Do not invoke other methods and properties of the DbConnection object until the returned Task is complete. |
![]() | ToString() |
| Name | Description | |
|---|---|---|
![]() | Disposed | |
![]() | StateChange | Occurs when the state of the event changes. |
| Name | Description | |
|---|---|---|
![]() ![]() | IDbConnection::BeginTransaction() | Begins a database transaction. |
![]() ![]() | IDbConnection::BeginTransaction(IsolationLevel) | Begins a database transaction with the specified IsolationLevel value. |
![]() ![]() | IDbConnection::CreateCommand() | Creates and returns a DbCommand object that is associated with the current connection. |
Notes to Inheritors:
When you inherit from DbConnection, you must override the following members: Close, BeginDbTransaction, ChangeDatabase, CreateDbCommand, Open, and StateChange. You must also provide the following properties: ConnectionString, Database, DataSource, ServerVersion, and State.
Available since 10
.NET Framework
Available since 2.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.






