DbCommand Methods
Assembly: System.Data (in System.Data.dll)
| Name | Description | |
|---|---|---|
![]() | Cancel() | Attempts to cancels the execution of a DbCommand. |
![]() | CreateDbParameter() | Creates a new instance of a DbParameter object. |
![]() | 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.) |
![]() | CreateParameter() | Creates a new instance of a DbParameter object. |
![]() | Dispose() | |
![]() | Dispose(Boolean) | |
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | ExecuteDbDataReader(CommandBehavior) | Executes the command text against the connection. |
![]() | ExecuteDbDataReaderAsync(CommandBehavior, CancellationToken) | Providers should implement this method to provide a non-default implementation for ExecuteReader overloads. The default implementation invokes the synchronous ExecuteReader method and returns a completed task, blocking the calling thread. The default implementation will return a cancelled task if passed an already cancelled cancellation token. Exceptions thrown by ExecuteReader will be communicated via the returned Task Exception property. This method accepts a cancellation token that can be used to request the operation to be cancelled early. Implementations may ignore this request. |
![]() | ExecuteNonQuery() | Executes a SQL statement against a connection object. |
![]() | ExecuteNonQueryAsync() | An asynchronous version of ExecuteNonQuery, which executes a SQL statement against a connection object. Invokes ExecuteNonQueryAsync with CancellationToken.None. |
![]() | ExecuteNonQueryAsync(CancellationToken) | This is the asynchronous version of ExecuteNonQuery. Providers should override with an appropriate implementation. The cancellation token may optionally be ignored. The default implementation invokes the synchronous ExecuteNonQuery method and returns a completed task, blocking the calling thread. The default implementation will return a cancelled task if passed an already cancelled cancellation token. Exceptions thrown by ExecuteNonQuery will be communicated via the returned Task Exception property. Do not invoke other methods and properties of the DbCommand object until the returned Task is complete. |
![]() | ExecuteReader() | Executes the CommandText against the Connection, and returns an DbDataReader. |
![]() | ExecuteReader(CommandBehavior) | Executes the CommandText against the Connection, and returns an DbDataReader using one of the CommandBehavior values. |
![]() | ExecuteReaderAsync() | An asynchronous version of ExecuteReader, which executes the CommandText against the Connection and returns a DbDataReader. Invokes ExecuteDbDataReaderAsync with CancellationToken.None. |
![]() | ExecuteReaderAsync(CancellationToken) | An asynchronous version of ExecuteReader, which executes the CommandText against the Connection and returns a DbDataReader. This method propagates a notification that operations should be canceled. Invokes ExecuteDbDataReaderAsync. |
![]() | ExecuteReaderAsync(CommandBehavior) | An asynchronous version of ExecuteReader, which executes the CommandText against the Connection and returns a DbDataReader. Invokes ExecuteDbDataReaderAsync. |
![]() | ExecuteReaderAsync(CommandBehavior, CancellationToken) | Invokes ExecuteDbDataReaderAsync. |
![]() | ExecuteScalar() | Executes the query and returns the first column of the first row in the result set returned by the query. All other columns and rows are ignored. |
![]() | ExecuteScalarAsync() | An asynchronous version of ExecuteScalar, which executes the query and returns the first column of the first row in the result set returned by the query. All other columns and rows are ignored. Invokes ExecuteScalarAsync with CancellationToken.None. |
![]() | ExecuteScalarAsync(CancellationToken) | This is the asynchronous version of ExecuteScalar. Providers should override with an appropriate implementation. The cancellation token may optionally be ignored. The default implementation invokes the synchronous ExecuteScalar method and returns a completed task, blocking the calling thread. The default implementation will return a cancelled task if passed an already cancelled cancellation token. Exceptions thrown by ExecuteScalar will be communicated via the returned Task Exception property. Do not invoke other methods and properties of the DbCommand object until the returned Task is complete. |
![]() | 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.) |
![]() | 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.) |
![]() | Prepare() | Creates a prepared (or compiled) version of the command on the data source. |
![]() | ToString() |
| Name | Description | |
|---|---|---|
![]() ![]() | IDbCommand::CreateParameter() | Creates a new instance of an IDbDataParameter object. |
![]() ![]() | IDbCommand::ExecuteReader() | Executes the CommandText against the Connection and builds an IDataReader. |
![]() ![]() | IDbCommand::ExecuteReader(CommandBehavior) | Executes the CommandText against the Connection, and builds an IDataReader using one of the CommandBehavior values. |



