2014-04-12 05:18:18 +00:00
|
|
|
// Beego (http://beego.me/)
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-04-12 05:18:18 +00:00
|
|
|
// @description beego is an open-source, high-performance web framework for the Go programming language.
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-04-12 05:18:18 +00:00
|
|
|
// @link http://github.com/astaxie/beego for the canonical source repository
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-04-12 05:18:18 +00:00
|
|
|
// @license http://github.com/astaxie/beego/blob/master/LICENSE
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-06-25 02:39:37 +00:00
|
|
|
// @authors astaxie, slene
|
2013-07-30 12:32:38 +00:00
|
|
|
package orm
|
|
|
|
|
2014-01-17 09:25:17 +00:00
|
|
|
// oracle dbBaser
|
2013-07-30 12:32:38 +00:00
|
|
|
type dbBaseOracle struct {
|
|
|
|
dbBase
|
|
|
|
}
|
|
|
|
|
2013-08-10 16:15:26 +00:00
|
|
|
var _ dbBaser = new(dbBaseOracle)
|
|
|
|
|
2014-01-17 09:25:17 +00:00
|
|
|
// create oracle dbBaser.
|
2013-07-30 12:32:38 +00:00
|
|
|
func newdbBaseOracle() dbBaser {
|
|
|
|
b := new(dbBaseOracle)
|
|
|
|
b.ins = b
|
|
|
|
return b
|
|
|
|
}
|