1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-26 18:44:13 +00:00
Beego/orm/db_oracle.go

18 lines
235 B
Go
Raw Normal View History

2013-07-30 12:32:38 +00:00
package orm
type dbBaseOracle struct {
dbBase
}
var _ dbBaser = new(dbBaseOracle)
func (d *dbBase) OperatorSql(operator string) string {
return ""
}
2013-07-30 12:32:38 +00:00
func newdbBaseOracle() dbBaser {
b := new(dbBaseOracle)
b.ins = b
return b
}