d28f005552
Fix limit for databases other than sqlite go mod tidy && go mod vendor Remove unneeded break statements Make everything work with the new xorm version Fix xorm logging Fix lint Fix redis init Fix using id field Fix database init for testing Change default database log level Add xorm logger Use const for postgres go mod tidy Merge branch 'master' into update/xorm # Conflicts: # go.mod # go.sum # vendor/modules.txt go mod vendor Fix loading fixtures for postgres Go mod vendor1 Update xorm to version 1 Co-authored-by: kolaente <k@knt.li> Reviewed-on: https://kolaente.dev/vikunja/api/pulls/323
55 lines
1.7 KiB
Go
55 lines
1.7 KiB
Go
// Copyright 2017 The Xorm Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package xorm
|
|
|
|
import "xorm.io/builder"
|
|
|
|
// SQL provides raw sql input parameter. When you have a complex SQL statement
|
|
// and cannot use Where, Id, In and etc. Methods to describe, you can use SQL.
|
|
func (session *Session) SQL(query interface{}, args ...interface{}) *Session {
|
|
session.statement.SQL(query, args...)
|
|
return session
|
|
}
|
|
|
|
// Where provides custom query condition.
|
|
func (session *Session) Where(query interface{}, args ...interface{}) *Session {
|
|
session.statement.Where(query, args...)
|
|
return session
|
|
}
|
|
|
|
// And provides custom query condition.
|
|
func (session *Session) And(query interface{}, args ...interface{}) *Session {
|
|
session.statement.And(query, args...)
|
|
return session
|
|
}
|
|
|
|
// Or provides custom query condition.
|
|
func (session *Session) Or(query interface{}, args ...interface{}) *Session {
|
|
session.statement.Or(query, args...)
|
|
return session
|
|
}
|
|
|
|
// ID provides converting id as a query condition
|
|
func (session *Session) ID(id interface{}) *Session {
|
|
session.statement.ID(id)
|
|
return session
|
|
}
|
|
|
|
// In provides a query string like "id in (1, 2, 3)"
|
|
func (session *Session) In(column string, args ...interface{}) *Session {
|
|
session.statement.In(column, args...)
|
|
return session
|
|
}
|
|
|
|
// NotIn provides a query string like "id in (1, 2, 3)"
|
|
func (session *Session) NotIn(column string, args ...interface{}) *Session {
|
|
session.statement.NotIn(column, args...)
|
|
return session
|
|
}
|
|
|
|
// Conds returns session query conditions except auto bean conditions
|
|
func (session *Session) Conds() builder.Cond {
|
|
return session.statement.Conds()
|
|
}
|