This repository has been archived by the owner on Mar 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
odbcstmt.go
155 lines (143 loc) · 3.43 KB
/
odbcstmt.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
// Copyright 2012 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package odbc
import (
"database/sql/driver"
"errors"
"fmt"
"github.com/lunny/godbc/api"
"sync"
"time"
"unsafe"
)
// TODO(brainman): see if I could use SQLExecDirect anywhere
type ODBCStmt struct {
h api.SQLHSTMT
Parameters []Parameter
Cols []Column
// locking/lifetime
mu sync.Mutex
usedByStmt bool
usedByRows bool
}
func (c *Conn) PrepareODBCStmt(query string) (*ODBCStmt, error) {
var out api.SQLHANDLE
ret := api.SQLAllocHandle(api.SQL_HANDLE_STMT, api.SQLHANDLE(c.h), &out)
if IsError(ret) {
return nil, NewError("SQLAllocHandle", c.h)
}
h := api.SQLHSTMT(out)
drv.Stats.updateHandleCount(api.SQL_HANDLE_STMT, 1)
b := api.StringToUTF16(query)
ret = api.SQLPrepare(h,
(*api.SQLWCHAR)(unsafe.Pointer(&b[0])), api.SQLINTEGER(len(b)))
if IsError(ret) {
defer releaseHandle(h)
return nil, NewError("SQLPrepare", h)
}
ps, err := ExtractParameters(h)
if err != nil {
defer releaseHandle(h)
return nil, err
}
return &ODBCStmt{
h: h,
Parameters: ps,
usedByStmt: true,
}, nil
}
func (s *ODBCStmt) closeByStmt() error {
s.mu.Lock()
defer s.mu.Unlock()
if s.usedByStmt {
defer func() { s.usedByStmt = false }()
if !s.usedByRows {
return s.releaseHandle()
}
}
return nil
}
func (s *ODBCStmt) closeByRows() error {
s.mu.Lock()
defer s.mu.Unlock()
if s.usedByRows {
defer func() { s.usedByRows = false }()
if s.usedByStmt {
ret := api.SQLCloseCursor(s.h)
if IsError(ret) {
return NewError("SQLCloseCursor", s.h)
}
return nil
} else {
return s.releaseHandle()
}
}
return nil
}
func (s *ODBCStmt) releaseHandle() error {
h := s.h
s.h = api.SQLHSTMT(api.SQL_NULL_HSTMT)
return releaseHandle(h)
}
var testingIssue5 bool // used during tests
func (s *ODBCStmt) Exec(args []driver.Value) error {
if len(args) != len(s.Parameters) {
return fmt.Errorf("wrong number of arguments %d, %d expected", len(args), len(s.Parameters))
}
for i, a := range args {
// this could be done in 2 steps:
// 1) bind vars right after prepare;
// 2) set their (vars) values here;
// but rebinding parameters for every new parameter value
// should be efficient enough for our purpose.
s.Parameters[i].BindValue(s.h, i, a)
}
if testingIssue5 {
time.Sleep(10 * time.Microsecond)
}
ret := api.SQLExecute(s.h)
if ret == api.SQL_NO_DATA {
// success but no data to report
return nil
}
if IsError(ret) {
return NewError("SQLExecute", s.h)
}
return nil
}
func (s *ODBCStmt) BindColumns() error {
// count columns
var n api.SQLSMALLINT
ret := api.SQLNumResultCols(s.h, &n)
if IsError(ret) {
return NewError("SQLNumResultCols", s.h)
}
if n < 1 {
return errors.New("Stmt did not create a result set")
}
// fetch column descriptions
s.Cols = make([]Column, n)
binding := true
for i := range s.Cols {
c, err := NewColumn(s.h, i)
if err != nil {
return err
}
s.Cols[i] = c
// Once we found one non-bindable column, we will not bind the rest.
// http://www.easysoft.com/developer/languages/c/odbc-tutorial-fetching-results.html
// ... One common restriction is that SQLGetData may only be called on columns after the last bound column. ...
if !binding {
continue
}
bound, err := s.Cols[i].Bind(s.h, i)
if err != nil {
return err
}
if !bound {
binding = false
}
}
return nil
}