-
Notifications
You must be signed in to change notification settings - Fork 1
/
qtmysql.go
320 lines (293 loc) · 6.43 KB
/
qtmysql.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
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
package qt
import (
"database/sql"
"fmt"
_ "github.com/go-sql-driver/mysql"
"strconv"
"sync"
"time"
)
type mysql struct {
ip string
prot int
user string
pass string
database string
err string
sql *sql.DB
row []interface{}
rowid int
myLook sync.Mutex
}
func newMysql() *mysql {
tmp := new(mysql)
return tmp
}
// SetInfo 设置配置信息
func (qtmysql *mysql) SetInfo(IP string, Prot int, User, Pass, kuming string) {
qtmysql.user = User
qtmysql.pass = Pass
qtmysql.prot = Prot
qtmysql.ip = IP
qtmysql.database = kuming
}
// GetErr 获取错误信息
func (qtmysql *mysql) GetErr() string {
return qtmysql.err
}
// SetConnMaxtime .
//
//最大连接周期,超过时间的连接就关闭连接
//
//单位 分钟
//
//应当在Open之后
//
//如果小于等于0,则一直保持连接
func (qtmysql *mysql) SetConnMaxtime(Times time.Duration) {
qtmysql.sql.SetConnMaxLifetime(Times * time.Minute)
}
// SetMaxCoons .
//
//设置最大连接数
//
//应当在Open之后
func (qtmysql *mysql) SetMaxCoons(coons int) {
qtmysql.sql.SetMaxOpenConns(coons)
}
// SetMaxCoons .
//
//设置闲置连接数
//如果 <=0,则不保留空闲连接。
//
//应当在Open之后
func (qtmysql *mysql) SetIdleCoons(coons int) {
qtmysql.sql.SetMaxIdleConns(coons)
}
// Open .
//
// 建立mysql连接
func (qtmysql *mysql) Open() bool {
var err error
dsn := fmt.Sprintf("%s:%s@%s(%s:%d)/%s", qtmysql.user, qtmysql.pass, "tcp", qtmysql.ip, qtmysql.prot, qtmysql.database)
//fmt.Println(dsn)
qtmysql.sql, err = sql.Open("mysql", dsn)
if err != nil {
qtmysql.err = fmt.Sprintf("Open mysql failed,err:%v", err)
return false
}
rows, err := qtmysql.sql.Query("show databases")
if err != nil {
qtmysql.err = err.Error()
return false
} else {
defer rows.Close()
}
return rows != nil
}
// Close .
//
// 断开mysql连接
func (qtmysql *mysql) Close() {
qtmysql.sql.Close()
}
// GetQueryNum .
//
// 获取Query语句得到的数量
func (qtmysql *mysql) GetQueryNum() int {
return len(qtmysql.row)
}
// SetRowIdBack .
//
// 设置返回结果索引后退一
func (qtmysql *mysql) SetRowIdBack() {
qtmysql.rowid--
if qtmysql.rowid < 0 {
qtmysql.rowid = 0
}
}
// SetRowIdPlus .
//
// 设置返回结果索引加一
func (qtmysql *mysql) SetRowIdPlus() {
qtmysql.rowid++
if qtmysql.rowid > len(qtmysql.row) {
qtmysql.rowid--
}
}
type Result struct {
result map[string]interface{}
}
// Getint .
//
//从返回结果中获取整数型数据 失败返回0
func (qtmysql *Result) Getint(Name string) int64 {
_int64, err := strconv.ParseInt(qtmysql.GetString(Name), 10, 64)
if err != nil {
return 0
}
return _int64
}
// Getfloat .
//
//从返回结果中获取 浮点型 数据 失败返回0
func (qtmysql *Result) Getfloat(Name string) float64 {
float, err := strconv.ParseFloat(qtmysql.GetString(Name), 64)
if err != nil {
return 0
}
return float
}
// GetBool .
//
//从返回结果中获取 逻辑型 数据 失败返回 false
//
//只有值为1的时候返回 true 不管是int还是string 只要是为1 就是 true
func (qtmysql *Result) GetBool(Name string) bool {
float := qtmysql.Getfloat(Name)
return float == 1 //1为 true 0为false
}
// GetMap .
//
// 获取这一条的全部数据 这是一个map
func (qtmysql *Result) GetMap() map[string]interface{} {
return qtmysql.result
}
// GetString .
//
//从返回结果中获取 字符串 数据 失败返回 空文本
func (qtmysql *Result) GetString(Name string) string {
cc := qtmysql.result[Name]
switch cv := cc.(type) {
case string:
return cv
case []byte:
return string(cv)
case int:
return strconv.Itoa(cv)
case int8:
return strconv.Itoa(int(cv))
case int16:
return strconv.Itoa(int(cv))
case int32:
return strconv.Itoa(int(cv))
case int64:
return strconv.Itoa(int(cv))
case float32:
return strconv.FormatFloat(float64(cv), 'E', -1, 32)
case float64:
return strconv.FormatFloat(cv, 'E', -1, 32)
default:
fmt.Println(fmt.Sprintf("%T", cv))
}
return ""
}
// Getbytes .
//
//从返回结果中获取 字节流 数据 失败返回 nil
func (qtmysql *Result) Getbytes(Name string) []byte {
cc := qtmysql.result[Name]
switch cv := cc.(type) {
case []byte:
return cv
default:
fmt.Println(fmt.Sprintf("%T", cv))
}
return nil
}
// GetResult .
//
// 获取返回的结果,如果在此之前调用 Query 那么之前的结果将清空
//
//请使用 SetRowIdBack SetRowIdPlus 前进后退
func (qtmysql *mysql) GetResult() *Result {
if qtmysql.rowid >= len(qtmysql.row) {
return nil
}
switch cc := qtmysql.row[qtmysql.rowid].(type) {
case map[string]interface{}:
tmp := new(Result)
tmp.result = cc
return tmp
}
return nil
}
// Exec .
//
//执行mysql语句 非查询
//
//成功返回,受影响的行数
//
//失败返回 -1
func (qtmysql *mysql) Exec(sql string) int64 {
qtmysql.myLook.Lock()
defer qtmysql.myLook.Unlock()
Conn, err := qtmysql.sql.Begin() //开始事务
if err != nil {
qtmysql.err = err.Error()
return -1
}
rows, err := qtmysql.sql.Exec(sql)
if err != nil {
Conn.Rollback() //滚回 事务
qtmysql.err = err.Error()
return -1
}
h, err := rows.RowsAffected()
Conn.Commit() //事务 提交
return h
}
// Query .
//
//查询mysql语句,最好不要用本命令来执行 增 删 改 操作
func (qtmysql *mysql) Query(sql string)( bool,error ){
qtmysql.myLook.Lock()
defer qtmysql.myLook.Unlock()
rows, err := qtmysql.sql.Query(sql)
qtmysql.row = append([]interface{}{})
qtmysql.rowid = 0
if err != nil {
qtmysql.err = err.Error()
return false,err
}
defer rows.Close()
for rows.Next() {
columns, _ := rows.Columns()
scanArgs := make([]interface{}, len(columns))
values := make([]interface{}, len(columns))
for i := range values {
scanArgs[i] = &values[i]
}
err = rows.Scan(scanArgs...)
record := make(map[string]interface{})
for i, col := range values {
if col != nil {
switch f := col.(type) {
case int:
record[columns[i]] = f
case int8:
record[columns[i]] = f
case int16:
record[columns[i]] = f
case int32:
record[columns[i]] = f
case int64:
record[columns[i]] = f
case float32:
record[columns[i]] = f
case float64:
record[columns[i]] = f
case bool:
record[columns[i]] = f
case []byte:
record[columns[i]] = f
default:
record[columns[i]] = col.([]byte)
}
}
}
qtmysql.row = append(qtmysql.row, nil)
qtmysql.row[len(qtmysql.row)-1] = record
}
return len(qtmysql.row) > 0,nil
}