2016-11-03 18:16:01 -04:00
|
|
|
// Copyright 2015 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 (
|
|
|
|
"errors"
|
2018-07-19 22:10:17 -04:00
|
|
|
"fmt"
|
2016-11-03 18:16:01 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2017-01-03 03:20:28 -05:00
|
|
|
// ErrParamsType params error
|
|
|
|
ErrParamsType = errors.New("Params type error")
|
|
|
|
// ErrTableNotFound table not found error
|
2018-07-19 22:10:17 -04:00
|
|
|
ErrTableNotFound = errors.New("Table not found")
|
2017-01-03 03:20:28 -05:00
|
|
|
// ErrUnSupportedType unsupported error
|
|
|
|
ErrUnSupportedType = errors.New("Unsupported type error")
|
2018-07-19 22:10:17 -04:00
|
|
|
// ErrNotExist record does not exist error
|
|
|
|
ErrNotExist = errors.New("Record does not exist")
|
2017-01-03 03:20:28 -05:00
|
|
|
// ErrCacheFailed cache failed error
|
|
|
|
ErrCacheFailed = errors.New("Cache failed")
|
|
|
|
// ErrNeedDeletedCond delete needs less one condition error
|
2018-07-19 22:10:17 -04:00
|
|
|
ErrNeedDeletedCond = errors.New("Delete action needs at least one condition")
|
2017-01-03 03:20:28 -05:00
|
|
|
// ErrNotImplemented not implemented
|
|
|
|
ErrNotImplemented = errors.New("Not implemented")
|
2018-01-27 10:20:59 -05:00
|
|
|
// ErrConditionType condition type unsupported
|
2018-07-19 22:10:17 -04:00
|
|
|
ErrConditionType = errors.New("Unsupported condition type")
|
2019-06-23 11:22:43 -04:00
|
|
|
// ErrUnSupportedSQLType parameter of SQL is not supported
|
|
|
|
ErrUnSupportedSQLType = errors.New("unsupported sql type")
|
2016-11-03 18:16:01 -04:00
|
|
|
)
|
2018-07-19 22:10:17 -04:00
|
|
|
|
|
|
|
// ErrFieldIsNotExist columns does not exist
|
|
|
|
type ErrFieldIsNotExist struct {
|
|
|
|
FieldName string
|
|
|
|
TableName string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e ErrFieldIsNotExist) Error() string {
|
|
|
|
return fmt.Sprintf("field %s is not valid on table %s", e.FieldName, e.TableName)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ErrFieldIsNotValid is not valid
|
|
|
|
type ErrFieldIsNotValid struct {
|
|
|
|
FieldName string
|
|
|
|
TableName string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e ErrFieldIsNotValid) Error() string {
|
|
|
|
return fmt.Sprintf("field %s is not valid on table %s", e.FieldName, e.TableName)
|
|
|
|
}
|