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

18 lines
235 B
Go

package orm
type dbBaseOracle struct {
dbBase
}
var _ dbBaser = new(dbBaseOracle)
func (d *dbBase) OperatorSql(operator string) string {
return ""
}
func newdbBaseOracle() dbBaser {
b := new(dbBaseOracle)
b.ins = b
return b
}