init orm project, beta, unstable

This commit is contained in:
slene
2013-07-30 20:32:38 +08:00
parent ccbf116fd6
commit bce35c708a
23 changed files with 4220 additions and 0 deletions

11
orm/db_oracle.go Normal file
View File

@@ -0,0 +1,11 @@
package orm
type dbBaseOracle struct {
dbBase
}
func newdbBaseOracle() dbBaser {
b := new(dbBaseOracle)
b.ins = b
return b
}