Свойство | Type | Description | |
---|---|---|---|
ICloneable | object |
Méthode | Description | |
---|---|---|
BigQueryCommand ( ) : System |
Initializes a new instance of the BigQueryCommand class with default settings.
|
|
BigQueryCommand ( |
Initializes a new instance of the BigQueryCommand class with the specified prototype.
|
|
BigQueryCommand ( string commandText ) : System |
Initializes a new instance of the BigQueryCommand class with the specified command text.
|
|
BigQueryCommand ( string commandText, |
Initializes a new instance of the BigQueryCommand class with the specified command text and connection settings.
|
|
Cancel ( ) : void |
Cancels the execution of the current BigQueryCommand.
|
|
ExecuteNonQuery ( ) : int |
Executes a non-query SQL statement and returns the number of rows affected.
|
|
ExecuteNonQueryAsync ( |
Asynchronously executes a non-query SQL statement. The asynchronous result contains the number of rows affected.
|
|
ExecuteScalar ( ) : object |
Executes a SQL statement and returns the first column of the first row of the resulting data.
|
|
ExecuteScalarAsync ( |
Asynchronously executes a SQL statement. The asynchronous result contains the first column of the first row of the resulting data.
|
|
Prepare ( ) : void |
Creates a prepared (or compiled) version of the command on the data source. This implementation always throws NotSupportedException.
|
Méthode | Description | |
---|---|---|
CreateDbParameter ( ) : |
||
ExecuteDbDataReader ( CommandBehavior behavior ) : System.Data.Common.DbDataReader | ||
ExecuteDbDataReaderAsync ( CommandBehavior behavior, |
Méthode | Description | |
---|---|---|
ICloneable ( ) : object |
public BigQueryCommand ( |
||
command | A BigQueryCommand object to clone. | |
Résultat | System |
public BigQueryCommand ( string commandText ) : System | ||
commandText | string | A System.String values specifying the text of a SQL statement. |
Résultat | System |
public BigQueryCommand ( string commandText, |
||
commandText | string | A System.String values specifying the text of a SQL statement. |
connection | A BigQueryConnection object. | |
Résultat | System |
protected CreateDbParameter ( ) : |
||
Résultat |
protected ExecuteDbDataReader ( CommandBehavior behavior ) : System.Data.Common.DbDataReader | ||
behavior | CommandBehavior | |
Résultat | System.Data.Common.DbDataReader |
protected ExecuteDbDataReaderAsync ( CommandBehavior behavior, |
||
behavior | CommandBehavior | |
cancellationToken | ||
Résultat | Task |
public ExecuteNonQueryAsync ( |
||
cancellationToken | A cancellation token that can be used to cancel command execution. | |
Résultat | Task |
public ExecuteScalarAsync ( |
||
cancellationToken | A cancellation token that can be used to cancel command execution. | |
Résultat | Task |