Uh oh!
There was an error while loading. Please reload this page.
forked from jmoiron/sqlx
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsqlx_context.go
More file actions
Latest commit
414 lines (363 loc) · 15.7 KB
/
Copy pathsqlx_context.go
File metadata and controls
414 lines (363 loc) · 15.7 KB
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
// +build go1.8
package sqlx
import (
"context"
"database/sql"
"fmt"
"io/ioutil"
"path/filepath"
"reflect"
)
// ConnectContext to a database and verify with a ping.
funcConnectContext(ctx context.Context, driverName, dataSourceNamestring) (*DB, error) {
db, err:=Open(driverName, dataSourceName)
iferr!=nil {
returndb, err
}
err=db.PingContext(ctx)
returndb, err
}
// QueryerContext is an interface used by GetContext and SelectContext
typeQueryerContextinterface {
QueryContext(ctx context.Context, querystring, args...interface{}) (*sql.Rows, error)
QueryxContext(ctx context.Context, querystring, args...interface{}) (*Rows, error)
QueryRowxContext(ctx context.Context, querystring, args...interface{}) *Row
}
// PreparerContext is an interface used by PreparexContext.
typePreparerContextinterface {
PrepareContext(ctx context.Context, querystring) (*sql.Stmt, error)
}
// ExecerContext is an interface used by MustExecContext and LoadFileContext
typeExecerContextinterface {
ExecContext(ctx context.Context, querystring, args...interface{}) (sql.Result, error)
}
// ExtContext is a union interface which can bind, query, and exec, with Context
// used by NamedQueryContext and NamedExecContext.
typeExtContextinterface {
binder
QueryerContext
ExecerContext
}
// SelectContext executes a query using the provided Queryer, and StructScans
// each row into dest, which must be a slice. If the slice elements are
// scannable, then the result set must have only one column. Otherwise,
// StructScan is used. The *sql.Rows are closed automatically.
// Any placeholder parameters are replaced with supplied args.
funcSelectContext(ctx context.Context, qQueryerContext, destinterface{}, querystring, args...interface{}) error {
rows, err:=q.QueryxContext(ctx, query, args...)
iferr!=nil {
returnerr
}
// if something happens here, we want to make sure the rows are Closed
deferrows.Close()
returnscanAll(rows, dest, false)
}
// PreparexContext prepares a statement.
//
// The provided context is used for the preparation of the statement, not for
// the execution of the statement.
funcPreparexContext(ctx context.Context, pPreparerContext, querystring) (*Stmt, error) {
s, err:=p.PrepareContext(ctx, query)
iferr!=nil {
returnnil, err
}
return&Stmt{Stmt: s, unsafe: isUnsafe(p), Mapper: mapperFor(p)}, err
}
// GetContext does a QueryRow using the provided Queryer, and scans the
// resulting row to dest. If dest is scannable, the result must only have one
// column. Otherwise, StructScan is used. Get will return sql.ErrNoRows like
// row.Scan would. Any placeholder parameters are replaced with supplied args.
// An error is returned if the result set is empty.
funcGetContext(ctx context.Context, qQueryerContext, destinterface{}, querystring, args...interface{}) error {
r:=q.QueryRowxContext(ctx, query, args...)
returnr.scanAny(dest, false)
}
// LoadFileContext exec's every statement in a file (as a single call to Exec).
// LoadFileContext may return a nil *sql.Result if errors are encountered
// locating or reading the file at path. LoadFile reads the entire file into
// memory, so it is not suitable for loading large data dumps, but can be useful
// for initializing schemas or loading indexes.
//
// FIXME: this does not really work with multi-statement files for mattn/go-sqlite3
// or the go-mysql-driver/mysql drivers; pq seems to be an exception here. Detecting
// this by requiring something with DriverName() and then attempting to split the
// queries will be difficult to get right, and its current driver-specific behavior
// is deemed at least not complex in its incorrectness.
funcLoadFileContext(ctx context.Context, eExecerContext, pathstring) (*sql.Result, error) {
realpath, err:=filepath.Abs(path)
iferr!=nil {
returnnil, err
}
contents, err:=ioutil.ReadFile(realpath)
iferr!=nil {
returnnil, err
}
res, err:=e.ExecContext(ctx, string(contents))
return&res, err
}
// MustExecContext execs the query using e and panics if there was an error.
// Any placeholder parameters are replaced with supplied args.
funcMustExecContext(ctx context.Context, eExecerContext, querystring, args...interface{}) sql.Result {
res, err:=e.ExecContext(ctx, query, args...)
iferr!=nil {
panic(err)
}
returnres
}
// PrepareNamedContext returns an sqlx.NamedStmt
func (db*DB) PrepareNamedContext(ctx context.Context, querystring) (*NamedStmt, error) {
returnprepareNamedContext(ctx, db, query)
}
// NamedQueryContext using this DB.
// Any named placeholder parameters are replaced with fields from arg.
func (db*DB) NamedQueryContext(ctx context.Context, querystring, arginterface{}) (*Rows, error) {
returnNamedQueryContext(ctx, db, query, arg)
}
// NamedExecContext using this DB.
// Any named placeholder parameters are replaced with fields from arg.
func (db*DB) NamedExecContext(ctx context.Context, querystring, arginterface{}) (sql.Result, error) {
returnNamedExecContext(ctx, db, query, arg)
}
// SelectContext using this DB.
// Any placeholder parameters are replaced with supplied args.
func (db*DB) SelectContext(ctx context.Context, destinterface{}, querystring, args...interface{}) error {
returnSelectContext(ctx, db, dest, query, args...)
}
// GetContext using this DB.
// Any placeholder parameters are replaced with supplied args.
// An error is returned if the result set is empty.
func (db*DB) GetContext(ctx context.Context, destinterface{}, querystring, args...interface{}) error {
returnGetContext(ctx, db, dest, query, args...)
}
// PreparexContext returns an sqlx.Stmt instead of a sql.Stmt.
//
// The provided context is used for the preparation of the statement, not for
// the execution of the statement.
func (db*DB) PreparexContext(ctx context.Context, querystring) (*Stmt, error) {
returnPreparexContext(ctx, db, query)
}
// QueryxContext queries the database and returns an *sqlx.Rows.
// Any placeholder parameters are replaced with supplied args.
func (db*DB) QueryxContext(ctx context.Context, querystring, args...interface{}) (*Rows, error) {
r, err:=db.DB.QueryContext(ctx, query, args...)
iferr!=nil {
returnnil, err
}
return&Rows{Rows: r, unsafe: db.unsafe, Mapper: db.Mapper}, err
}
// QueryRowxContext queries the database and returns an *sqlx.Row.
// Any placeholder parameters are replaced with supplied args.
func (db*DB) QueryRowxContext(ctx context.Context, querystring, args...interface{}) *Row {
rows, err:=db.DB.QueryContext(ctx, query, args...)
return&Row{rows: rows, err: err, unsafe: db.unsafe, Mapper: db.Mapper}
}
// MustBeginTx starts a transaction, and panics on error. Returns an *sqlx.Tx instead
// of an *sql.Tx.
//
// The provided context is used until the transaction is committed or rolled
// back. If the context is canceled, the sql package will roll back the
// transaction. Tx.Commit will return an error if the context provided to
// MustBeginContext is canceled.
func (db*DB) MustBeginTx(ctx context.Context, opts*sql.TxOptions) *Tx {
tx, err:=db.BeginTxx(ctx, opts)
iferr!=nil {
panic(err)
}
returntx
}
// MustExecContext (panic) runs MustExec using this database.
// Any placeholder parameters are replaced with supplied args.
func (db*DB) MustExecContext(ctx context.Context, querystring, args...interface{}) sql.Result {
returnMustExecContext(ctx, db, query, args...)
}
// BeginTxx begins a transaction and returns an *sqlx.Tx instead of an
// *sql.Tx.
//
// The provided context is used until the transaction is committed or rolled
// back. If the context is canceled, the sql package will roll back the
// transaction. Tx.Commit will return an error if the context provided to
// BeginxContext is canceled.
func (db*DB) BeginTxx(ctx context.Context, opts*sql.TxOptions) (*Tx, error) {
tx, err:=db.DB.BeginTx(ctx, opts)
iferr!=nil {
returnnil, err
}
return&Tx{Tx: tx, driverName: db.driverName, unsafe: db.unsafe, Mapper: db.Mapper}, err
}
// Connx returns an *sqlx.Conn instead of an *sql.Conn.
func (db*DB) Connx(ctx context.Context) (*Conn, error) {
conn, err:=db.DB.Conn(ctx)
iferr!=nil {
returnnil, err
}
return&Conn{Conn: conn, driverName: db.driverName, unsafe: db.unsafe, Mapper: db.Mapper}, nil
}
// BeginTxx begins a transaction and returns an *sqlx.Tx instead of an
// *sql.Tx.
//
// The provided context is used until the transaction is committed or rolled
// back. If the context is canceled, the sql package will roll back the
// transaction. Tx.Commit will return an error if the context provided to
// BeginxContext is canceled.
func (c*Conn) BeginTxx(ctx context.Context, opts*sql.TxOptions) (*Tx, error) {
tx, err:=c.Conn.BeginTx(ctx, opts)
iferr!=nil {
returnnil, err
}
return&Tx{Tx: tx, driverName: c.driverName, unsafe: c.unsafe, Mapper: c.Mapper}, err
}
// SelectContext using this Conn.
// Any placeholder parameters are replaced with supplied args.
func (c*Conn) SelectContext(ctx context.Context, destinterface{}, querystring, args...interface{}) error {
returnSelectContext(ctx, c, dest, query, args...)
}
// GetContext using this Conn.
// Any placeholder parameters are replaced with supplied args.
// An error is returned if the result set is empty.
func (c*Conn) GetContext(ctx context.Context, destinterface{}, querystring, args...interface{}) error {
returnGetContext(ctx, c, dest, query, args...)
}
// PreparexContext returns an sqlx.Stmt instead of a sql.Stmt.
//
// The provided context is used for the preparation of the statement, not for
// the execution of the statement.
func (c*Conn) PreparexContext(ctx context.Context, querystring) (*Stmt, error) {
returnPreparexContext(ctx, c, query)
}
// QueryxContext queries the database and returns an *sqlx.Rows.
// Any placeholder parameters are replaced with supplied args.
func (c*Conn) QueryxContext(ctx context.Context, querystring, args...interface{}) (*Rows, error) {
r, err:=c.Conn.QueryContext(ctx, query, args...)
iferr!=nil {
returnnil, err
}
return&Rows{Rows: r, unsafe: c.unsafe, Mapper: c.Mapper}, err
}
// QueryRowxContext queries the database and returns an *sqlx.Row.
// Any placeholder parameters are replaced with supplied args.
func (c*Conn) QueryRowxContext(ctx context.Context, querystring, args...interface{}) *Row {
rows, err:=c.Conn.QueryContext(ctx, query, args...)
return&Row{rows: rows, err: err, unsafe: c.unsafe, Mapper: c.Mapper}
}
// Rebind a query within a Conn's bindvar type.
func (c*Conn) Rebind(querystring) string {
returnRebind(BindType(c.driverName), query)
}
// StmtxContext returns a version of the prepared statement which runs within a
// transaction. Provided stmt can be either *sql.Stmt or *sqlx.Stmt.
func (tx*Tx) StmtxContext(ctx context.Context, stmtinterface{}) *Stmt {
vars*sql.Stmt
switchv:=stmt.(type) {
caseStmt:
s=v.Stmt
case*Stmt:
s=v.Stmt
case*sql.Stmt:
s=v
default:
panic(fmt.Sprintf("non-statement type %v passed to Stmtx", reflect.ValueOf(stmt).Type()))
}
return&Stmt{Stmt: tx.StmtContext(ctx, s), Mapper: tx.Mapper}
}
// NamedStmtContext returns a version of the prepared statement which runs
// within a transaction.
func (tx*Tx) NamedStmtContext(ctx context.Context, stmt*NamedStmt) *NamedStmt {
return&NamedStmt{
QueryString: stmt.QueryString,
Params: stmt.Params,
Stmt: tx.StmtxContext(ctx, stmt.Stmt),
}
}
// PreparexContext returns an sqlx.Stmt instead of a sql.Stmt.
//
// The provided context is used for the preparation of the statement, not for
// the execution of the statement.
func (tx*Tx) PreparexContext(ctx context.Context, querystring) (*Stmt, error) {
returnPreparexContext(ctx, tx, query)
}
// PrepareNamedContext returns an sqlx.NamedStmt
func (tx*Tx) PrepareNamedContext(ctx context.Context, querystring) (*NamedStmt, error) {
returnprepareNamedContext(ctx, tx, query)
}
// MustExecContext runs MustExecContext within a transaction.
// Any placeholder parameters are replaced with supplied args.
func (tx*Tx) MustExecContext(ctx context.Context, querystring, args...interface{}) sql.Result {
returnMustExecContext(ctx, tx, query, args...)
}
// QueryxContext within a transaction and context.
// Any placeholder parameters are replaced with supplied args.
func (tx*Tx) QueryxContext(ctx context.Context, querystring, args...interface{}) (*Rows, error) {
r, err:=tx.Tx.QueryContext(ctx, query, args...)
iferr!=nil {
returnnil, err
}
return&Rows{Rows: r, unsafe: tx.unsafe, Mapper: tx.Mapper}, err
}
// SelectContext within a transaction and context.
// Any placeholder parameters are replaced with supplied args.
func (tx*Tx) SelectContext(ctx context.Context, destinterface{}, querystring, args...interface{}) error {
returnSelectContext(ctx, tx, dest, query, args...)
}
// GetContext within a transaction and context.
// Any placeholder parameters are replaced with supplied args.
// An error is returned if the result set is empty.
func (tx*Tx) GetContext(ctx context.Context, destinterface{}, querystring, args...interface{}) error {
returnGetContext(ctx, tx, dest, query, args...)
}
// QueryRowxContext within a transaction and context.
// Any placeholder parameters are replaced with supplied args.
func (tx*Tx) QueryRowxContext(ctx context.Context, querystring, args...interface{}) *Row {
rows, err:=tx.Tx.QueryContext(ctx, query, args...)
return&Row{rows: rows, err: err, unsafe: tx.unsafe, Mapper: tx.Mapper}
}
// NamedExecContext using this Tx.
// Any named placeholder parameters are replaced with fields from arg.
func (tx*Tx) NamedExecContext(ctx context.Context, querystring, arginterface{}) (sql.Result, error) {
returnNamedExecContext(ctx, tx, query, arg)
}
// SelectContext using the prepared statement.
// Any placeholder parameters are replaced with supplied args.
func (s*Stmt) SelectContext(ctx context.Context, destinterface{}, args...interface{}) error {
returnSelectContext(ctx, &qStmt{s}, dest, "", args...)
}
// GetContext using the prepared statement.
// Any placeholder parameters are replaced with supplied args.
// An error is returned if the result set is empty.
func (s*Stmt) GetContext(ctx context.Context, destinterface{}, args...interface{}) error {
returnGetContext(ctx, &qStmt{s}, dest, "", args...)
}
// MustExecContext (panic) using this statement. Note that the query portion of
// the error output will be blank, as Stmt does not expose its query.
// Any placeholder parameters are replaced with supplied args.
func (s*Stmt) MustExecContext(ctx context.Context, args...interface{}) sql.Result {
returnMustExecContext(ctx, &qStmt{s}, "", args...)
}
// QueryRowxContext using this statement.
// Any placeholder parameters are replaced with supplied args.
func (s*Stmt) QueryRowxContext(ctx context.Context, args...interface{}) *Row {
qs:=&qStmt{s}
returnqs.QueryRowxContext(ctx, "", args...)
}
// QueryxContext using this statement.
// Any placeholder parameters are replaced with supplied args.
func (s*Stmt) QueryxContext(ctx context.Context, args...interface{}) (*Rows, error) {
qs:=&qStmt{s}
returnqs.QueryxContext(ctx, "", args...)
}
func (q*qStmt) QueryContext(ctx context.Context, querystring, args...interface{}) (*sql.Rows, error) {
returnq.Stmt.QueryContext(ctx, args...)
}
func (q*qStmt) QueryxContext(ctx context.Context, querystring, args...interface{}) (*Rows, error) {
r, err:=q.Stmt.QueryContext(ctx, args...)
iferr!=nil {
returnnil, err
}
return&Rows{Rows: r, unsafe: q.Stmt.unsafe, Mapper: q.Stmt.Mapper}, err
}
func (q*qStmt) QueryRowxContext(ctx context.Context, querystring, args...interface{}) *Row {
rows, err:=q.Stmt.QueryContext(ctx, args...)
return&Row{rows: rows, err: err, unsafe: q.Stmt.unsafe, Mapper: q.Stmt.Mapper}
}
func (q*qStmt) ExecContext(ctx context.Context, querystring, args...interface{}) (sql.Result, error) {
returnq.Stmt.ExecContext(ctx, args...)
}