forked from Masterminds/squirrel
-
Notifications
You must be signed in to change notification settings - Fork 1
/
delete.go
180 lines (143 loc) · 4.71 KB
/
delete.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
package squirrel
import (
"bytes"
"fmt"
"strings"
"github.com/lann/builder"
)
type deleteData struct {
PlaceholderFormat PlaceholderFormat
Prefixes exprs
From string
WhereParts []Sqlizer
OrderBys []string
GroupBys []string
HavingParts []Sqlizer
Limit string
Offset string
Suffixes exprs
}
func (d *deleteData) ToSql() (sqlStr string, args []interface{}, err error) {
if len(d.From) == 0 {
err = fmt.Errorf("delete statements must specify a From table")
return
}
sql := &bytes.Buffer{}
if len(d.Prefixes) > 0 {
args, _ = d.Prefixes.AppendToSql(sql, " ", args)
sql.WriteString(" ")
}
sql.WriteString("DELETE FROM ")
sql.WriteString(d.From)
if len(d.WhereParts) > 0 {
sql.WriteString(" WHERE ")
args, err = appendToSql(d.WhereParts, sql, " AND ", args)
if err != nil {
return
}
}
if len(d.OrderBys) > 0 {
sql.WriteString(" ORDER BY ")
sql.WriteString(strings.Join(d.OrderBys, ", "))
}
if len(d.Limit) > 0 {
sql.WriteString(" LIMIT ")
sql.WriteString(d.Limit)
}
if len(d.Offset) > 0 {
sql.WriteString(" OFFSET ")
sql.WriteString(d.Offset)
}
if len(d.Suffixes) > 0 {
sql.WriteString(" ")
args, _ = d.Suffixes.AppendToSql(sql, " ", args)
}
sqlStr, err = d.PlaceholderFormat.ReplacePlaceholders(sql.String())
return
}
// Builder
// DeleteBuilder builds SQL DELETE statements.
type DeleteBuilder builder.Builder
func init() {
builder.Register(DeleteBuilder{}, deleteData{})
}
// Format methods
// PlaceholderFormat sets PlaceholderFormat (e.g. Question or Dollar) for the
// query.
func (b DeleteBuilder) PlaceholderFormat(f PlaceholderFormat) WhereConditions {
return builder.Set(b, "PlaceholderFormat", f).(DeleteBuilder)
}
// SQL methods
// ToSql builds the query into a SQL string and bound args.
func (b DeleteBuilder) ToSql() (string, []interface{}, error) {
data := builder.GetStruct(b).(deleteData)
return data.ToSql()
}
// Prefix adds an expression to the beginning of the query
func (b DeleteBuilder) Prefix(sql string, args ...interface{}) DeleteCondition {
return builder.Append(b, "Prefixes", Expr(sql, args...)).(DeleteBuilder)
}
// From sets the table to be deleted from.
func (b DeleteBuilder) From(from string) DeleteCondition {
return builder.Set(b, "From", from).(DeleteBuilder)
}
// Where adds WHERE expressions to the query.
//
// See SelectBuilder.Where for more information.
func (b DeleteBuilder) Where(pred interface{}, args ...interface{}) WhereConditions {
return builder.Append(b, "WhereParts", newWherePart(pred, args...)).(DeleteBuilder)
}
//Condition
func (b DeleteBuilder) Condition() WhereConditions {
return builder.Append(b, "WhereParts", newWherePart("")).(DeleteBuilder)
}
//expr
func (b DeleteBuilder) Expr(sql string, args ...interface{}) WhereConditions {
return builder.Append(b, "WhereParts", newWherePart(expr{sql: sql, args: args})).(DeleteBuilder)
}
//eq
func (b DeleteBuilder) Eq(column string, arg interface{}) WhereConditions {
return b.Where(Eq{column: arg})
}
func (b DeleteBuilder) NotEq(column string, arg interface{}) WhereConditions {
return b.Where(NotEq{column: arg})
}
//gt
func (b DeleteBuilder) Gt(column string, arg interface{}) WhereConditions {
return b.Where(Gt{column: arg})
}
//gtOrEq
func (b DeleteBuilder) GtOrEq(column string, arg interface{}) WhereConditions {
return b.Where(GtOrEq{column: arg})
}
//lt
func (b DeleteBuilder) Lt(column string, arg interface{}) WhereConditions {
return b.Where(Lt{column: arg})
}
//ltOrEq
func (b DeleteBuilder) LtOrEq(column string, arg interface{}) WhereConditions {
return b.Where(LtOrEq{column: arg})
}
// OrderBy adds ORDER BY expressions to the query.
func (b DeleteBuilder) GroupBy(groupBys ...string) WhereConditions {
return builder.Extend(b, "GroupBys", groupBys).(DeleteBuilder)
}
func (b DeleteBuilder) Having(pred interface{}, rest ...interface{}) WhereConditions {
return builder.Append(b, "HavingParts", newWherePart(pred, rest...)).(DeleteBuilder)
}
// OrderBy adds ORDER BY expressions to the query.
func (b DeleteBuilder) OrderBy(orderBys ...string) WhereConditions {
return builder.Extend(b, "OrderBys", orderBys).(DeleteBuilder)
}
// Limit sets a LIMIT clause on the query.
func (b DeleteBuilder) Limit(limit int) WhereConditions {
return builder.Set(b, "Limit", fmt.Sprintf("%d", limit)).(DeleteBuilder)
}
// Offset sets a OFFSET clause on the query.
func (b DeleteBuilder) Offset(offset int) WhereConditions {
return builder.Set(b, "Offset", fmt.Sprintf("%d", offset)).(DeleteBuilder)
}
// Suffix adds an expression to the end of the query
func (b DeleteBuilder) Suffix(sql string, args ...interface{}) WhereConditions {
return builder.Append(b, "Suffixes", Expr(sql, args...)).(DeleteBuilder)
}