ICmdBuilder

ICmdBuilder allows implementation of command builders base on Statement objects.

Namespace:
Inetdev.Data.Query
Type:
Interface
Public:
Yes
Protected:
No
Sealed:
No
Abstract:
Yes
Implements:
System.IDisposable

Events

Type Name Summary
AddingSelectColumnEventHandler AddingSelectColumn Raised when a column is being added to a SELECT command.

Properties

Command

The IDbCommand that is being built.

Signature:
public IDbCommand Command { get; set; }

CommandBuilder

The IDbCmdBuilder that is managing the building of the SQL command.

Signature:
public IDbCmdBuilder CommandBuilder { get; set; }

Methods

BuildCommand

Builds and returns the IDbCommand to execute.

Signature:
public IDbCommand BuildCommand()
Returns

The IDbCommand to excecute againt the database engine.

BuildCommandText

Builds the command text for the SQL commnad being built.

Signature:
public String BuildCommandText()
Returns

The command text to execute againts the database engine.