C# Class Azavea.Open.DAO.SQL.SqlDaJoinQuery

A SQL query that joins two tables, can be run by the SqlDaLayer.
Inheritance: SqlDaQuery, IDaJoinQuery
Datei anzeigen Open project: azavea/net-dao

Public Methods

Method Description
GetLeftColumnPrefix ( ) : string

The prefix that should be used to get the left table's columns out of the IDataReader when accessing them by name.

GetRightColumnPrefix ( ) : string

The prefix that should be used to get the right table's columns out of the IDataReader when accessing them by name.

SetPrefixes ( string left, string right ) : void

Populates the prefix strings.

Method Details

GetLeftColumnPrefix() public method

The prefix that should be used to get the left table's columns out of the IDataReader when accessing them by name.
public GetLeftColumnPrefix ( ) : string
return string

GetRightColumnPrefix() public method

The prefix that should be used to get the right table's columns out of the IDataReader when accessing them by name.
public GetRightColumnPrefix ( ) : string
return string

SetPrefixes() public method

Populates the prefix strings.
public SetPrefixes ( string left, string right ) : void
left string Prefix for columns from the left table.
right string Prefix for columns from the right table.
return void