Click or drag to resize
CqlConnection Methods

The CqlConnection type exposes the following members.

Methods
  NameDescription
Public methodBeginTransaction
Starts a database transaction.
(Inherited from DbConnection.)
Public methodBeginTransaction(IsolationLevel)
Starts a database transaction with the specified isolation level.
(Inherited from DbConnection.)
Public methodChangeDatabase
Changes the current database for an open connection.
(Overrides DbConnectionChangeDatabase(String).)
Public methodClone
Public methodClose
Closes the connection to the database. This is the preferred method of closing any open connection.
(Overrides DbConnectionClose.)
Public methodCreateCommand
Creates and returns a DbCommand object associated with the current connection.
(Inherited from DbConnection.)
Public methodCreateObjRef
Creates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object.
(Inherited from MarshalByRefObject.)
Public methodDispose
Releases all resources used by the Component.
(Inherited from Component.)
Public methodEnlistTransaction
Enlists in the specified transaction.
(Inherited from DbConnection.)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetLifetimeService
Retrieves the current lifetime service object that controls the lifetime policy for this instance.
(Inherited from MarshalByRefObject.)
Public methodGetSchema
Returns schema information for the data source of this DbConnection.
(Inherited from DbConnection.)
Public methodGetSchema(String)
Returns schema information for the data source of this DbConnection using the specified string for the schema name.
(Inherited from DbConnection.)
Public methodGetSchema(String, 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.
(Inherited from DbConnection.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodInitializeLifetimeService
Obtains a lifetime service object to control the lifetime policy for this instance.
(Inherited from MarshalByRefObject.)
Public methodOpen
Opens a database connection with the settings specified by the ConnectionString.
(Overrides DbConnectionOpen.)
Public methodOpenAsync
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.)
Public methodOpenAsync(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.
(Inherited from DbConnection.)
Public methodToString
Returns a String containing the name of the Component, if any. This method should not be overridden.
(Inherited from Component.)
Top
See Also