-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbndOCINumSlice.go
94 lines (86 loc) · 2.47 KB
/
bndOCINumSlice.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
// Copyright 2014 Rana Ian. All rights reserved.
// Use of this source code is governed by The MIT License
// found in the accompanying LICENSE file.
package ora
/*
#include <oci.h>
#include "version.h"
*/
import "C"
import (
"unsafe"
)
type bndOCINumSlice struct {
stmt *Stmt
ocibnd *C.OCIBind
ociNumbers []C.OCINumber
arrHlp
}
func (bnd *bndOCINumSlice) bind(values []OCINum, nullInds []C.sb2, position namedPos, stmt *Stmt, isAssocArray bool) (iterations uint32, err error) {
bnd.stmt = stmt
L, C := len(values), cap(values)
if nullInds != nil {
bnd.nullInds = nullInds
}
iterations, curlenp, needAppend := bnd.ensureBindArrLength(&L, &C, isAssocArray)
if needAppend {
values = append(values, OCINum{})
}
bnd.ociNumbers = make([]C.OCINumber, len(values))
alen := C.ACTUAL_LENGTH_TYPE(C.sizeof_OCINumber)
for n := range values {
bnd.alen[n] = alen
values[n].ToC(&bnd.ociNumbers[n])
}
ph, phLen, phFree := position.CString()
if ph != nil {
defer phFree()
}
r := C.bindByNameOrPos(
bnd.stmt.ocistmt, //OCIStmt *stmtp,
&bnd.ocibnd,
bnd.stmt.ses.srv.env.ocierr, //OCIError *errhp,
C.ub4(position.Ordinal), //ub4 position,
ph,
phLen,
unsafe.Pointer(&bnd.ociNumbers[0]), //void *valuep,
C.LENGTH_TYPE(C.sizeof_OCINumber), //sb8 value_sz,
C.SQLT_VNU, //ub2 dty,
unsafe.Pointer(&bnd.nullInds[0]), //void *indp,
&bnd.alen[0], //ub4 *alenp,
&bnd.rcode[0], //ub2 *rcodep,
getMaxarrLen(C, isAssocArray), //ub4 maxarr_len,
curlenp, //ub4 *curelep,
C.OCI_DEFAULT) //ub4 mode );
if r == C.OCI_ERROR {
return iterations, bnd.stmt.ses.srv.env.ociError()
}
r = C.OCIBindArrayOfStruct(
bnd.ocibnd,
bnd.stmt.ses.srv.env.ocierr,
C.ub4(C.sizeof_OCINumber), //ub4 pvskip,
C.ub4(C.sizeof_sb2), //ub4 indskip,
C.ub4(C.sizeof_ub4), //ub4 alskip,
C.ub4(C.sizeof_ub2)) //ub4 rcskip
if r == C.OCI_ERROR {
return iterations, bnd.stmt.ses.srv.env.ociError()
}
return iterations, nil
}
func (bnd *bndOCINumSlice) setPtr() error {
return nil
}
func (bnd *bndOCINumSlice) close() (err error) {
defer func() {
if value := recover(); value != nil {
err = errR(value)
}
}()
stmt := bnd.stmt
bnd.stmt = nil
bnd.ocibnd = nil
bnd.ociNumbers = nil
bnd.arrHlp.close()
stmt.putBnd(bndIdxOCINumSlice, bnd)
return nil
}