C# Класс DevExpress.DataAccess.BigQuery.BigQueryParameter

A parameter to a BigQueryCommand.
Наследование: System.Data.Common.DbParameter, ICloneable
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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.

Приватные методы

Метод Описание
ICloneable ( ) : object
Validate ( ) : void

Описание методов

BigQueryParameter() публичный Метод

Initializes a new instance of the BigQueryParameter class with default settings.
public BigQueryParameter ( ) : System
Результат System

BigQueryParameter() публичный Метод

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.
Результат System

BigQueryParameter() публичный Метод

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.
Результат System

BigQueryParameter() публичный Метод

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.
Результат System

Clone() публичный Метод

Creates a shallow copy of the current BigQueryParameter.
public Clone ( ) : BigQueryParameter
Результат BigQueryParameter

ResetDbType() публичный Метод

Resets the data type associated with the parameter.
public ResetDbType ( ) : void
Результат void