Documentation
¶
Index ¶
- type SQLTable
- func (T *SQLTable) And(column string, value interface{}) *SQLTable
- func (T *SQLTable) Ands(a ...interface{}) *SQLTable
- func (T *SQLTable) Args(args ...interface{}) []interface{}
- func (T *SQLTable) ColumnMark(q string) *SQLTable
- func (T *SQLTable) Copy() *SQLTable
- func (T *SQLTable) Excluded(a ...string) *SQLTable
- func (T *SQLTable) ExtArgs(args ...interface{}) *SQLTable
- func (T *SQLTable) Or(column string, value interface{}) *SQLTable
- func (T *SQLTable) Ors(a ...interface{}) *SQLTable
- func (T *SQLTable) SQL() string
- func (T *SQLTable) Set(column string, value interface{}) *SQLTable
- func (T *SQLTable) SetValues(v ...interface{}) []interface{}
- func (T *SQLTable) Sets(a ...interface{}) *SQLTable
- func (T *SQLTable) ToFuncs(a ...interface{}) *SQLTable
- func (T *SQLTable) ToTypes(a ...interface{}) *SQLTable
- func (T *SQLTable) Value(column string, value interface{}) *SQLTable
- func (T *SQLTable) ValueValues(v ...interface{}) []interface{}
- func (T *SQLTable) Values(a ...interface{}) *SQLTable
- func (T *SQLTable) Where(symbol, column string, value interface{}) *SQLTable
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type SQLTable ¶
type SQLTable struct {
// contains filtered or unexported fields
}
func (*SQLTable) Args ¶
func (T *SQLTable) Args(args ...interface{}) []interface{}
载入参数,他会替换语句中的?符号
args ...interface{} 额外参数,在非解析SQL句子里的?
[]interface{} 返回所有参数
Click to show internal directories.
Click to hide internal directories.