Add two more APIs

This commit is contained in:
Jinzhu 2013-10-25 21:11:29 +08:00
parent 7f73480a35
commit b4031e004a
1 changed files with 8 additions and 0 deletions

8
orm.go
View File

@ -61,6 +61,14 @@ func (s *Orm) Delete(value interface{}) *Orm {
return s
}
func (s *Orm) Update(column string, value string) *Orm {
return s
}
func (s *Orm) Updates(values map[string]string) *Orm {
return s
}
func (s *Orm) Exec(sql string) *Orm {
return s
}