C# Class DevExpress.DataAccess.BigQuery.BigQueryParameter

A parameter to a BigQueryCommand.
Inheritance: System.Data.Common.DbParameter, ICloneable
Afficher le fichier Open project: DevExpress/BigQueryProvider Class Usage Examples

Méthodes publiques

Méthode Description
BigQueryParameter ( ) : System

Initializes a new instance of the BigQueryParameter class with default settings.

BigQueryParameter ( string parameterName, BigQueryDbType bigQueryDbType ) : System

Initializes a new instance of the BigQueryParameter class with the specified settings.

BigQueryParameter ( string parameterName, DbType dbType ) : System

Initializes a new instance of the BigQueryParameter class with the specified settings.

BigQueryParameter ( string parameterName, object value ) : System

Initializes a new instance of the BigQueryParameter class with the specified settings.

Clone ( ) : BigQueryParameter

Creates a shallow copy of the current BigQueryParameter.

ResetDbType ( ) : void

Resets the data type associated with the parameter.

Private Methods

Méthode Description
ICloneable ( ) : object
Validate ( ) : void

Method Details

BigQueryParameter() public méthode

Initializes a new instance of the BigQueryParameter class with default settings.
public BigQueryParameter ( ) : System
Résultat System

BigQueryParameter() public méthode

Initializes a new instance of the BigQueryParameter class with the specified settings.
public BigQueryParameter ( string parameterName, BigQueryDbType bigQueryDbType ) : System
parameterName string The name of the parameter.
bigQueryDbType BigQueryDbType A BigQueryDbType enumeration value specifying the data type of the parameter.
Résultat System

BigQueryParameter() public méthode

Initializes a new instance of the BigQueryParameter class with the specified settings.
public BigQueryParameter ( string parameterName, DbType dbType ) : System
parameterName string The name of the parameter.
dbType DbType A DBType enumeration value specifying the data type of the parameter.
Résultat System

BigQueryParameter() public méthode

Initializes a new instance of the BigQueryParameter class with the specified settings.
public BigQueryParameter ( string parameterName, object value ) : System
parameterName string The name of the parameter.
value object The value of the parameter.
Résultat System

Clone() public méthode

Creates a shallow copy of the current BigQueryParameter.
public Clone ( ) : BigQueryParameter
Résultat BigQueryParameter

ResetDbType() public méthode

Resets the data type associated with the parameter.
public ResetDbType ( ) : void
Résultat void