C# Class DevExpress.DataAccess.BigQuery.BigQueryParameter

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

Public Methods

Method 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

Method Description
ICloneable ( ) : object
Validate ( ) : void

Method Details

BigQueryParameter() public method

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

BigQueryParameter() public method

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.
return System

BigQueryParameter() public method

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.
return System

BigQueryParameter() public method

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.
return System

Clone() public method

Creates a shallow copy of the current BigQueryParameter.
public Clone ( ) : BigQueryParameter
return BigQueryParameter

ResetDbType() public method

Resets the data type associated with the parameter.
public ResetDbType ( ) : void
return void