-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsqltx.go
106 lines (92 loc) · 2.67 KB
/
sqltx.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
// Copyright (c) 2025 William Dode
// Licensed under the MIT license. See LICENSE file in the project root for details.
package sqlo
import (
"context"
"database/sql"
"fmt"
"log"
"github.com/jmoiron/sqlx"
)
type Tx struct {
Ctx context.Context
tx *sqlx.Tx
Logger *log.Logger
DbType int
}
func WrapTx(ctx context.Context, tx *sqlx.Tx) *Tx {
return &Tx{
Ctx: ctx,
tx: tx,
}
}
func (x *Tx) Commit() error {
err := x.tx.Commit()
if err != nil {
return fmt.Errorf("Tx Commit: %w", err)
}
return nil
}
func (x *Tx) Rollback() error {
err := x.tx.Rollback()
if err != nil {
return fmt.Errorf("Tx Rollback: %w", err)
}
return nil
}
func (x *Tx) log(query string, args ...any) {
if x.Logger == nil {
return
}
x.Logger.Println(sql_fake(x.DbType, query, args...))
}
func (x *Tx) Select(dest any, query string, args ...any) error {
x.log(query, args...)
return sqlx.SelectContext(x.Ctx, x.tx, dest, query, args...)
}
func (x *Tx) Get(dest any, query string, args ...any) error {
x.log(query, args...)
return sqlx.GetContext(x.Ctx, x.tx, dest, query, args...)
}
func (x *Tx) MustExec(query string, args ...any) sql.Result {
res, err := x.Exec(query, args...)
if err != nil {
panic(err)
}
return res
}
func (x *Tx) Exec(query string, args ...any) (sql.Result, error) {
x.log(query, args...)
if x.tx == nil {
return nil, fmt.Errorf("sxc: %T", x.tx)
}
return x.tx.ExecContext(x.Ctx, query, args...)
}
func (x *Tx) InsertMap(table string, m map[string]any) (sql.Result, error) {
s, values := insertSt(x.DbType, table, m)
res, err := x.Exec(s, values...)
return res, err
}
// InsertMapReturning will add returning at the end of the statement
// with returning string and call Get to dest
// dest must be a pointer to destination
// returning is the name(s) of the field(s)
func (x *Tx) InsertMapReturning(dest any, returning string, table string, m map[string]any) error {
s, values := insertSt(x.DbType, table, m)
s += " returning " + returning
return x.Get(dest, s, values...)
}
func (x *Tx) UpdateMap(table string, m map[string]any, where string, where_vals ...any) (sql.Result, error) {
s, values := updateSt(x.DbType, table, m, where, where_vals...)
res, err := x.Exec(s, values...)
return res, err
}
// UpdateMapReturning will add returning at the end of the statement
// with returning string and call Get to dest
// dest must be a pointer to destination
// returning is the name(s) of the field(s)
func (x *Tx) UpdateMapReturning(dest any, returning string, table string, m map[string]any, where string, where_vals ...any) error {
s, values := updateSt(x.DbType, table, m, where, where_vals...)
s += " returning " + returning
return x.Get(dest, s, values...)
}