ICmdBuilder allows implementation of command builders base on Statement objects.
Type | Name | Summary |
---|---|---|
AddingSelectColumnEventHandler | AddingSelectColumn | Raised when a column is being added to a SELECT command. |
The IDbCommand that is being built.
public IDbCommand Command { get; set; }
The IDbCmdBuilder that is managing the building of the SQL command.
public IDbCmdBuilder CommandBuilder { get; set; }
Builds and returns the IDbCommand to execute.
public IDbCommand BuildCommand()
The IDbCommand to excecute againt the database engine.
Builds the command text for the SQL commnad being built.
public String BuildCommandText()
The command text to execute againts the database engine.
In this document