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

Automatically generates commands to be executed against a BigQuery data source.
Наследование: System.Data.Common.DbCommandBuilder
Показать файл Открыть проект

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

Метод Описание
BigQueryCommandBuilder ( ) : System.Data

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

BigQueryCommandBuilder ( BigQueryDataAdapter dataAdapter ) : System.Data

Initializes a new instance of the BigQueryCommandBuilder class with the specified data adapter.

GetDeleteCommand ( ) : BigQueryCommand

Returns a command that deletes records from a data source.

GetDeleteCommand ( bool useColumnsForParameterNames ) : BigQueryCommand

Returns a command that deletes records from a data source.

GetInsertCommand ( ) : BigQueryCommand

Returns a command that inserts a record into a data source.

GetInsertCommand ( bool useColumnsForParameterNames ) : BigQueryCommand

Returns a command that inserts a record into a data source.

OnRowUpdatingHandler ( object sender, RowUpdatingEventArgs e ) : void
QuoteIdentifier ( string unquotedIdentifier ) : string

Returns a properly quoted analog of the specified quoted identifier.

UnquoteIdentifier ( string quotedIdentifier ) : string

Returns an unquoted analog of the specified quoted identifier.

Защищенные методы

Метод Описание
ApplyParameterInfo ( DbParameter parameter, DataRow row, StatementType statementType, bool whereClause ) : void
GetParameterName ( int parameterOrdinal ) : string
GetParameterName ( string parameterName ) : string
GetParameterPlaceholder ( int parameterOrdinal ) : string
GetSchemaTable ( DbCommand sourceCommand ) : DataTable
SetRowUpdatingHandler ( DbDataAdapter dataAdapter ) : void

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

ApplyParameterInfo() защищенный Метод

protected ApplyParameterInfo ( DbParameter parameter, DataRow row, StatementType statementType, bool whereClause ) : void
parameter System.Data.Common.DbParameter
row System.Data.DataRow
statementType StatementType
whereClause bool
Результат void

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

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

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

Initializes a new instance of the BigQueryCommandBuilder class with the specified data adapter.
public BigQueryCommandBuilder ( BigQueryDataAdapter dataAdapter ) : System.Data
dataAdapter BigQueryDataAdapter A BigQueryDataAdapter for which to generate commands.
Результат System.Data

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

Returns a command that deletes records from a data source.
public GetDeleteCommand ( ) : BigQueryCommand
Результат BigQueryCommand

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

Returns a command that deletes records from a data source.
public GetDeleteCommand ( bool useColumnsForParameterNames ) : BigQueryCommand
useColumnsForParameterNames bool pecifies whether to generate parameter names based on column names.
Результат BigQueryCommand

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

Returns a command that inserts a record into a data source.
public GetInsertCommand ( ) : BigQueryCommand
Результат BigQueryCommand

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

Returns a command that inserts a record into a data source.
public GetInsertCommand ( bool useColumnsForParameterNames ) : BigQueryCommand
useColumnsForParameterNames bool Specifies whether to generate parameter names based on column names.
Результат BigQueryCommand

GetParameterName() защищенный Метод

protected GetParameterName ( int parameterOrdinal ) : string
parameterOrdinal int
Результат string

GetParameterName() защищенный Метод

protected GetParameterName ( string parameterName ) : string
parameterName string
Результат string

GetParameterPlaceholder() защищенный Метод

protected GetParameterPlaceholder ( int parameterOrdinal ) : string
parameterOrdinal int
Результат string

GetSchemaTable() защищенный Метод

protected GetSchemaTable ( DbCommand sourceCommand ) : DataTable
sourceCommand System.Data.Common.DbCommand
Результат System.Data.DataTable

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

public OnRowUpdatingHandler ( object sender, RowUpdatingEventArgs e ) : void
sender object
e System.Data.Common.RowUpdatingEventArgs
Результат void

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

Returns a properly quoted analog of the specified quoted identifier.
public QuoteIdentifier ( string unquotedIdentifier ) : string
unquotedIdentifier string a string containing an unquoted identifier.
Результат string

SetRowUpdatingHandler() защищенный Метод

protected SetRowUpdatingHandler ( DbDataAdapter dataAdapter ) : void
dataAdapter System.Data.Common.DbDataAdapter
Результат void

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

Returns an unquoted analog of the specified quoted identifier.
public UnquoteIdentifier ( string quotedIdentifier ) : string
quotedIdentifier string a string containing an unquoted identifier.
Результат string