OleDbConnection 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 an open connection to a data source.
public ref class OleDbConnection sealed : System::Data::Common::DbConnection, ICloneable, IDisposable
public ref class OleDbConnection sealed : System::ComponentModel::Component, ICloneable, IDisposable, System::Data::IDbConnection
public ref class OleDbConnection sealed : System::Data::Common::DbConnection, ICloneable
public sealed class OleDbConnection : System.Data.Common.DbConnection, ICloneable, IDisposable
public sealed class OleDbConnection : System.ComponentModel.Component, ICloneable, IDisposable, System.Data.IDbConnection
public sealed class OleDbConnection : System.Data.Common.DbConnection, ICloneable
type OleDbConnection = class
inherit DbConnection
interface IDbConnection
interface IDisposable
interface ICloneable
type OleDbConnection = class
inherit Component
interface ICloneable
interface IDbConnection
interface IDisposable
type OleDbConnection = class
inherit DbConnection
interface ICloneable
interface IDbConnection
interface IDisposable
Public NotInheritable Class OleDbConnection
Inherits DbConnection
Implements ICloneable, IDisposable
Public NotInheritable Class OleDbConnection
Inherits Component
Implements ICloneable, IDbConnection, IDisposable
Public NotInheritable Class OleDbConnection
Inherits DbConnection
Implements ICloneable
- Inheritance
- Inheritance
- Implements
Examples
The following example creates an OleDbCommand and an OleDbConnection. The OleDbConnection is opened and set as the Connection for the OleDbCommand. The example then calls ExecuteNonQuery and closes the connection. To accomplish this, ExecuteNonQuery is passed a connection string and a query string that is an SQL INSERT statement.
public void InsertRow(string connectionString, string insertSQL)
{
using (OleDbConnection connection = new OleDbConnection(connectionString))
{
// The insertSQL string contains a SQL statement that
// inserts a new row in the source table.
OleDbCommand command = new OleDbCommand(insertSQL);
// Set the Connection to the new OleDbConnection.
command.Connection = connection;
// Open the connection and execute the insert command.
try
{
connection.Open();
command.ExecuteNonQuery();
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
// The connection is automatically closed when the
// code exits the using block.
}
}
Public Sub InsertRow(ByVal connectionString As String, _
ByVal insertSQL As String)
Using connection As New OleDbConnection(connectionString)
' The insertSQL string contains a SQL statement that
' inserts a new row in the source table.
Dim command As New OleDbCommand(insertSQL)
' Set the Connection to the new OleDbConnection.
command.Connection = connection
' Open the connection and execute the insert command.
Try
connection.Open()
command.ExecuteNonQuery()
Catch ex As Exception
Console.WriteLine(ex.Message)
End Try
' The connection is automatically closed when the
' code exits the Using block.
End Using
End Sub
Remarks
An OleDbConnection object represents a unique connection to a data source. With a client/server database system, it is equivalent to a network connection to the server. Depending on the functionality supported by the native OLE DB provider, some methods or properties of an OleDbConnection object may not be available.
When you create an instance of OleDbConnection, all properties are set to their initial values. For a list of these values, see the OleDbConnection constructor.
You can open more than one DataReader on a single OleDbConnection. If the OLE DB provider you use does not support more than one DataReader on a single connection, the provider implicitly opens an additional connection for each.
If the OleDbConnection goes out of scope, it is not closed. Therefore, you must explicitly close the connection by calling Close or Dispose, or by using the OleDbConnection object within a Using
statement.
Note
To deploy high-performance applications, you must use connection pooling. When you use the .NET Framework Data Provider for OLE DB, you do not have to enable connection pooling because the provider manages this automatically. For more information about how to use connection pooling with the .NET Framework Data Provider for OLE DB, see OLE DB, ODBC, and Oracle Connection Pooling.
If a fatal OleDbException (for example, a SQL Server severity level of 20 or greater) is generated by the method executing an OleDbCommand, the OleDbConnection might be closed. However, the user can reopen the connection and continue.
An application that creates an instance of the OleDbConnection object can require all direct and indirect callers to have sufficient permission to the code by setting declarative or imperative security demands. OleDbConnection makes security demands using the OleDbPermission object. Users can verify that their code has sufficient permissions by using the OleDbPermissionAttribute object. Users and administrators can also use the Caspol.exe (Code Access Security Policy Tool) to modify security policy at the computer, user, and enterprise levels. For more information, see Code Access Security and ADO.NET.
For more information about handling warning and informational messages from the data server, see Connection Events.
Note
The OleDbConnection object does not support setting or retrieving dynamic properties specific to an OLE DB provider. Only properties that can be passed in the connection string for the OLE DB provider are supported.
Constructors
OleDbConnection() |
Initializes a new instance of the OleDbConnection class. |
OleDbConnection(String) |
Initializes a new instance of the OleDbConnection class with the specified connection string. |
Properties
CanCreateBatch |
Gets a value that indicates whether this DbConnection instance supports the DbBatch class. (Inherited from DbConnection) |
CanRaiseEvents |
Gets a value indicating whether the component can raise an event. (Inherited from Component) |
ConnectionString |
Gets or sets the string used to open a database. |
ConnectionTimeout |
Gets the time to wait (in seconds) while trying to establish 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 or the database to be used after a connection is opened. |
DataSource |
Gets the server name or file name of the data source. |
DbProviderFactory |
Gets the DbProviderFactory for this DbConnection. (Inherited from DbConnection) |
DesignMode |
Gets a value that indicates whether the Component is currently in design mode. (Inherited from Component) |
Events |
Gets the list of event handlers that are attached to this Component. (Inherited from Component) |
Provider |
Gets the name of the OLE DB provider specified in the "Provider= " clause of the connection string. |
ServerVersion |
Gets a string that contains the version of the server to which the client is connected. |
Site |
Gets or sets the ISite of the Component. (Inherited from Component) |
State |
Gets the current state of the connection. |
Methods
BeginDbTransaction(IsolationLevel) |
When overridden in a derived class, starts a database transaction. (Inherited from DbConnection) |
BeginDbTransactionAsync(IsolationLevel, CancellationToken) |
Asynchronously starts a database transaction. (Inherited from DbConnection) |
BeginTransaction() |
Starts a database transaction with the current IsolationLevel value. |
BeginTransaction(IsolationLevel) |
Starts a database transaction with the specified isolation level. |
BeginTransactionAsync(CancellationToken) |
Asynchronously begins a database transaction. (Inherited from DbConnection) |
BeginTransactionAsync(IsolationLevel, CancellationToken) |
Asynchronously begins a database transaction. (Inherited from DbConnection) |
ChangeDatabase(String) |
Changes the current database for an open OleDbConnection. |
ChangeDatabaseAsync(String, CancellationToken) |
Asynchronously changes the current database for an open connection. (Inherited from DbConnection) |
Close() |
Closes the connection to the data source. |
CloseAsync() |
Asynchronously closes the connection to the database. (Inherited from DbConnection) |
CreateBatch() |
Returns a new instance of the provider's class that implements the DbBatch class. (Inherited from DbConnection) |
CreateCommand() |
Creates and returns an OleDbCommand object associated with the OleDbConnection. |
CreateDbBatch() |
When overridden in a derived class, returns a new instance of the provider's class that implements the DbBatch class. (Inherited from DbConnection) |
CreateDbCommand() |
When overridden in a derived class, creates and returns a DbCommand object associated with the current connection. (Inherited from DbConnection) |
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() |
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. (Inherited from DbConnection) |
Dispose() |
Releases all resources used by the Component. (Inherited from Component) |
Dispose(Boolean) |
Releases the unmanaged resources used by the DbConnection and optionally releases the managed resources. (Inherited from DbConnection) |
Dispose(Boolean) |
Releases the unmanaged resources used by the Component and optionally releases the managed resources. (Inherited from Component) |
DisposeAsync() |
Asynchronously diposes the connection object. (Inherited from DbConnection) |
EnlistDistributedTransaction(ITransaction) |
Enlists in the specified transaction as a distributed transaction. |
EnlistTransaction(Transaction) |
Enlists in the specified transaction as a distributed transaction. |
Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
GetHashCode() |
Serves as the default hash function. (Inherited from Object) |
GetLifetimeService() |
Obsolete.
Retrieves the current lifetime service object that controls the lifetime policy for this instance. (Inherited from MarshalByRefObject) |
GetOleDbSchemaTable(Guid, Object[]) |
Returns schema information from a data source as indicated by a GUID, and after it applies the specified restrictions. |
GetSchema() |
Returns schema information for the data source of this OleDbConnection. |
GetSchema(String, String[]) |
Returns schema information for the data source of this OleDbConnection using the specified string for the schema name and the specified string array for the restriction values. |
GetSchema(String) |
Returns schema information for the data source of this OleDbConnection using the specified string for the schema name. |
GetSchemaAsync(CancellationToken) |
This is an asynchronous version of GetSchema().
Providers should override with an appropriate implementation.
The |
GetSchemaAsync(String, CancellationToken) |
This is the asynchronous version of GetSchema(String).
Providers should override with an appropriate implementation.
The |
GetSchemaAsync(String, String[], CancellationToken) |
This is the asynchronous version of GetSchema(String, String[]).
Providers should override with an appropriate implementation.
The |
GetService(Type) |
Returns an object that represents a service provided by the Component or by its Container. (Inherited from Component) |
GetType() |
Gets the Type of the current instance. (Inherited from Object) |
InitializeLifetimeService() |
Obsolete.
Obtains a lifetime service object to control the lifetime policy for this instance. (Inherited from MarshalByRefObject) |
MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
MemberwiseClone(Boolean) |
Creates a shallow copy of the current MarshalByRefObject object. (Inherited from MarshalByRefObject) |
OnStateChange(StateChangeEventArgs) |
Raises the StateChange event. (Inherited from DbConnection) |
Open() |
Opens a database connection with the property 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(CancellationToken) with CancellationToken.None. (Inherited from DbConnection) |
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 |
ReleaseObjectPool() |
Indicates that the OleDbConnection object pool can be released when the last underlying connection is released. |
ResetState() |
Updates the State property of the OleDbConnection object. |
ToString() |
Returns a String containing the name of the Component, if any. This method should not be overridden. (Inherited from Component) |
Events
Disposed |
Occurs when the component is disposed by a call to the Dispose() method. (Inherited from Component) |
InfoMessage |
Occurs when the provider sends a warning or an informational message. |
StateChange |
Occurs when the state of the connection changes. |
StateChange |
Occurs when the state of the connection changes. (Inherited from DbConnection) |
Explicit Interface Implementations
ICloneable.Clone() |
For a description of this member, see Clone(). |
IDbConnection.BeginTransaction() |
This API supports the product infrastructure and is not intended to be used directly from your code. Begins a database transaction. |
IDbConnection.BeginTransaction() |
Begins a database transaction. (Inherited from DbConnection) |
IDbConnection.BeginTransaction(IsolationLevel) |
This API supports the product infrastructure and is not intended to be used directly from your code. Begins a database transaction with the specified isolation level. |
IDbConnection.BeginTransaction(IsolationLevel) |
Begins a database transaction with the specified isolation level. (Inherited from DbConnection) |
IDbConnection.CreateCommand() |
This API supports the product infrastructure and is not intended to be used directly from your code. Creates and returns a command object associated with the connection. |
IDbConnection.CreateCommand() |
Creates and returns a DbCommand object that is associated with the current connection. (Inherited from DbConnection) |
Extension Methods
ConfigureAwait(IAsyncDisposable, Boolean) |
Configures how awaits on the tasks returned from an async disposable will be performed. |