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

A "normal" SQL query, can be run by the SqlDaLayer.
Inheritance: IDaQuery
Datei anzeigen Open project: azavea/net-dao Class Usage Examples

Public Properties

Property Type Description
Params List
Sql System.Text.StringBuilder

Public Methods

Method Description
Clear ( ) : void

Clears the contents of the query, allowing the object to be reused.

ToString ( ) : string

Returns a T:System.String that represents the current T:System.Object.

Method Details

Clear() public method

Clears the contents of the query, allowing the object to be reused.
public Clear ( ) : void
return void

ToString() public method

Returns a T:System.String that represents the current T:System.Object.
public ToString ( ) : string
return string

Property Details

Params public_oe property

Any parameters for the SQL statement.
public List Params
return List

Sql public_oe property

The SQL statement to run, hopefully parameterized.
public StringBuilder,System.Text Sql
return System.Text.StringBuilder