Documentation ¶
Index ¶
- Constants
- Variables
- func Delete(where ...interface{}) (result sql.Result, err error)
- func FindCount(where ...interface{}) (int, error)
- func FindValue(fieldsAndWhere ...interface{}) (gdb.Value, error)
- func GetCurrentSeasonID() int
- func Insert(data ...interface{}) (result sql.Result, err error)
- func Replace(data ...interface{}) (result sql.Result, err error)
- func Save(data ...interface{}) (result sql.Result, err error)
- func Update(dataAndWhere ...interface{}) (result sql.Result, err error)
- type Entity
- func (r *Entity) Delete() (result sql.Result, err error)
- func (r *Entity) Insert() (result sql.Result, err error)
- func (r *Entity) OmitEmpty() *arModel
- func (r *Entity) Replace() (result sql.Result, err error)
- func (r *Entity) Save() (result sql.Result, err error)
- func (r *Entity) Update() (result sql.Result, err error)
Constants ¶
View Source
const ( // ColumnIdentifier - the identifier column of entity. ColumnIdentifier = "identifier" // ColumnValue - the key column of entity. ColumnValue = "value" )
Variables ¶
View Source
var ( // Table is the table name of configurations. Table = "configurations" // Model is the model object of configurations. Model = &arModel{g.DB("default").Table(Table).Safe()} )
Functions ¶
func GetCurrentSeasonID ¶
func GetCurrentSeasonID() int
GetCurrentSeasonID - get currrent season id for other services.
Types ¶
type Entity ¶
type Entity struct { Key string `orm:"key,primary" json:"key"` // Value string `orm:"value" json:"value"` // }
Entity is the golang structure for table configurations.
func (*Entity) Delete ¶
Delete does "DELETE FROM...WHERE..." statement for deleting current object from table.
func (*Entity) Insert ¶
Inserts does "INSERT...INTO..." statement for inserting current object into table.
func (*Entity) OmitEmpty ¶
func (r *Entity) OmitEmpty() *arModel
OmitEmpty sets OPTION_OMITEMPTY option for the model, which automatically filers the data and where attributes for empty values.
func (*Entity) Replace ¶
Replace does "REPLACE...INTO..." statement for inserting current object into table. If there's already another same record in the table (it checks using primary key or unique index), it deletes it and insert this one.
Click to show internal directories.
Click to hide internal directories.