-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsql_log.go
140 lines (131 loc) · 2.61 KB
/
sql_log.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
// Copyright (c) 2023 William Dode
// Licensed under the MIT license. See LICENSE file in the project root for details.
package sqlo
import (
"database/sql"
"fmt"
"regexp"
"strconv"
"strings"
"time"
"github.com/lib/pq"
)
var DB_PG = 0
var DB_ACCESS = 1
var DB_MSSQL = 2
var sql_log_re_question = regexp.MustCompile(`\?`)
var sql_log_re_dollar = regexp.MustCompile(`\$\d+`)
var sql_log_re_sqlserver = regexp.MustCompile(`\@p\d+`)
func sql_fake(db_type int, query string, args ...interface{}) string {
if len(args) == 0 {
return query
}
rqi := 0
frq := func(s string) string {
switch db_type {
case DB_ACCESS:
rqi++
return sql_quoter(db_type, args[rqi-1])
case DB_MSSQL:
rqi, _ = strconv.Atoi(s[2:])
default: // PG
rqi, _ = strconv.Atoi(s[1:])
}
return sql_quoter(db_type, args[rqi-1])
}
switch db_type {
case DB_ACCESS:
return sql_log_re_question.ReplaceAllStringFunc(query, frq)
case DB_PG:
return sql_log_re_dollar.ReplaceAllStringFunc(query, frq)
case DB_MSSQL:
return sql_log_re_sqlserver.ReplaceAllStringFunc(query, frq)
}
return query
}
func sql_quoter(db_type int, s interface{}) string {
switch v := s.(type) {
case Raw:
return string(v)
case nil:
return "null"
case int:
return strconv.Itoa(v)
case float64:
return strconv.FormatFloat(v, 'f', -1, 64)
case string:
return "'" + strings.Replace(v, "'", "''", -1) + "'"
case time.Time:
return v.Format("'2006-01-02 15:04:05'")
case pq.NullTime:
if v.Valid {
return v.Time.Format("'2006-01-02 15:04:05'")
}
return "null"
case sql.NullTime:
if v.Valid {
return v.Time.Format("'2006-01-02 15:04:05'")
}
return "null"
case *time.Time:
return v.Format("'2006-01-02 15:04:05'")
case bool:
switch db_type {
case DB_ACCESS:
switch v {
case true:
return "-1"
case false:
return "0"
}
default:
switch v {
case true:
return "true"
case false:
return "false"
}
}
case sql.NullBool:
if !v.Valid {
return "null"
}
switch db_type {
case DB_ACCESS:
switch v.Bool {
case true:
return "-1"
case false:
return "0"
}
default:
switch v.Bool {
case true:
return "true"
case false:
return "false"
}
}
case sql.NullInt64:
if !v.Valid {
return "null"
}
return strconv.Itoa(int(v.Int64))
case sql.NullInt32:
if !v.Valid {
return "null"
}
return strconv.Itoa(int(v.Int32))
case sql.NullInt16:
if !v.Valid {
return "null"
}
return strconv.Itoa(int(v.Int16))
case sql.NullFloat64:
if !v.Valid {
return "null"
}
return strconv.FormatFloat(v.Float64, 'f', -1, 64)
}
return fmt.Sprintf("%s", s)
}