mirror of
https://github.com/astaxie/beego.git
synced 2024-11-04 21:10:54 +00:00
35 lines
682 B
Go
35 lines
682 B
Go
package orm
|
|
|
|
var mysqlOperators = map[string]string{
|
|
"exact": "= ?",
|
|
"iexact": "LIKE ?",
|
|
"contains": "LIKE BINARY ?",
|
|
"icontains": "LIKE ?",
|
|
// "regex": "REGEXP BINARY ?",
|
|
// "iregex": "REGEXP ?",
|
|
"gt": "> ?",
|
|
"gte": ">= ?",
|
|
"lt": "< ?",
|
|
"lte": "<= ?",
|
|
"startswith": "LIKE BINARY ?",
|
|
"endswith": "LIKE BINARY ?",
|
|
"istartswith": "LIKE ?",
|
|
"iendswith": "LIKE ?",
|
|
}
|
|
|
|
type dbBaseMysql struct {
|
|
dbBase
|
|
}
|
|
|
|
var _ dbBaser = new(dbBaseMysql)
|
|
|
|
func (d *dbBaseMysql) OperatorSql(operator string) string {
|
|
return mysqlOperators[operator]
|
|
}
|
|
|
|
func newdbBaseMysql() dbBaser {
|
|
b := new(dbBaseMysql)
|
|
b.ins = b
|
|
return b
|
|
}
|