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_postgres.go Normal file
View File

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