-
Notifications
You must be signed in to change notification settings - Fork 13
/
runner_prepare.go
83 lines (72 loc) · 2.06 KB
/
runner_prepare.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
package dbx
import (
"context"
"database/sql"
"time"
)
func (r *PrepareTxRunner) Exec(params ...interface{}) (rs sql.Result, err error) {
return r.ExecContext(context.Background(), params...)
}
func (r *PrepareTxRunner) ExecContext(ctx context.Context, params ...interface{}) (rs sql.Result, err error) {
if r.LoggingEnabled() {
defer func(start time.Time) {
r.Logger().Log(&QueryStatus{
Query: r.sql,
Args: params,
Err: err,
Start: start,
End: time.Now(),
Context: ctx,
})
}(time.Now())
}
return r.sqlPrepareExecutor.ExecContext(ctx, params...)
}
func (r *PrepareTxRunner) Execute(params ...interface{}) (rowsAffected int64, err error) {
return r.ExecuteContext(context.Background(), params...)
}
func (r *PrepareTxRunner) ExecuteContext(ctx context.Context, params ...interface{}) (rowsAffected int64, err error) {
rs, err := r.ExecContext(ctx, params...)
if err != nil {
return 0, err
}
rowsAffected, err = rs.RowsAffected()
return rowsAffected, err
}
func (r *PrepareTxRunner) Query(params ...interface{}) (*sql.Rows, error) {
return r.QueryContext(context.Background(), params...)
}
func (r *PrepareTxRunner) QueryContext(ctx context.Context, params ...interface{}) (rows *sql.Rows, err error) {
if r.LoggingEnabled() {
defer func(start time.Time) {
r.Logger().Log(&QueryStatus{
Query: r.sql,
Args: params,
Err: err,
Start: start,
End: time.Now(),
Context: ctx,
})
}(time.Now())
}
return r.sqlPrepareExecutor.QueryContext(ctx, params...)
}
func (r *PrepareTxRunner) QueryRow(params ...interface{}) *sql.Row {
return r.QueryRowContext(context.Background(), params...)
}
func (r *PrepareTxRunner) QueryRowContext(ctx context.Context, params ...interface{}) *sql.Row {
var err error
if r.LoggingEnabled() {
defer func(start time.Time) {
r.Logger().Log(&QueryStatus{
Query: r.sql,
Args: params,
Err: err,
Start: start,
End: time.Now(),
Context: ctx,
})
}(time.Now())
}
return r.sqlPrepareExecutor.QueryRowContext(ctx, params...)
}