-
Notifications
You must be signed in to change notification settings - Fork 0
/
query_withdbq.go
55 lines (40 loc) · 1.25 KB
/
query_withdbq.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
package main
import (
"context"
"database/sql"
"fmt"
"time"
_ "github.com/go-sql-driver/mysql"
"github.com/mitchellh/mapstructure"
"github.com/rocketlaunchr/dbq"
)
func singleRowQueryWithDbq(ctx context.Context, db *sql.DB, table string) interface{} {
stmt := fmt.Sprintf("SELECT * FROM %s LIMIT 1", table)
singleRes := dbq.MustQ(ctx, db, stmt, dbq.SingleResult)
if singleRes == nil { // no result returned
return nil
}
return singleRes
}
func multipleRowsQueryWithDbq(ctx context.Context, db *sql.DB, table string, dataStruct interface{}) interface{} {
stmt := fmt.Sprintf("SELECT * FROM %s", table)
// Testing Multiple Data Query with dbq.MustQ
opts := &dbq.Options{
ConcreteStruct: dataStruct,
DecoderConfig: &dbq.StructorConfig{
DecodeHook: mapstructure.StringToTimeHookFunc(time.RFC3339),
WeaklyTypedInput: true,
},
}
multResult := dbq.MustQ(ctx, db, stmt, opts)
return multResult
}
func multipleRowsQueryWithDbqNoParseTime(ctx context.Context, db *sql.DB, table string, dataStruct interface{}) interface{} {
stmt := fmt.Sprintf("SELECT * FROM %s", table)
// Testing Multiple Data Query with dbq.MustQ
opts := &dbq.Options{
ConcreteStruct: dataStruct,
}
multResult := dbq.MustQ(ctx, db, stmt, opts)
return multResult
}