Skip to content
  • This project
    • Loading...
  • Sign in

张磊 / FileStorageBeego

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • FileStorageBeego
  • orm
  • db_oracle.go
  • slene's avatar
    orm add sqlite3 support, may be support postgres in next commit · 6c41e6dd
    slene committed 2013-08-11 00:15:26 +0800
    6c41e6dd
db_oracle.go 235 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
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
}