C# Class Hardly.SqlTable

Datei anzeigen Open project: hardlydifficult/HardlyBot Class Usage Examples

Public Properties

Property Type Description
primaryKeyHeaders SqlColumnHeaders[]
tableName string

Public Methods

Method Description
Select ( string join, string what, string whereClause, object vars, string orderBy, uint limit ) : List
Select ( string join, string what, string whereClause, object vars, string orderBy ) : object[]
SelectByPrimaryKey ( object primaryKeyValues ) : object[]
SqlTable ( string tableName ) : System
Update ( string join, string set, string where, object vars ) : bool

Method Details

Select() public method

public Select ( string join, string what, string whereClause, object vars, string orderBy, uint limit ) : List
join string
what string
whereClause string
vars object
orderBy string
limit uint
return List

Select() public method

public Select ( string join, string what, string whereClause, object vars, string orderBy ) : object[]
join string
what string
whereClause string
vars object
orderBy string
return object[]

SelectByPrimaryKey() public method

public SelectByPrimaryKey ( object primaryKeyValues ) : object[]
primaryKeyValues object
return object[]

SqlTable() public method

public SqlTable ( string tableName ) : System
tableName string
return System

Update() public method

public Update ( string join, string set, string where, object vars ) : bool
join string
set string
where string
vars object
return bool

Property Details

primaryKeyHeaders public_oe property

public SqlColumnHeaders[] primaryKeyHeaders
return SqlColumnHeaders[]

tableName public_oe property

public string tableName
return string