-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbndInt16Ptr.go
88 lines (81 loc) · 2.42 KB
/
bndInt16Ptr.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
// 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 bndInt16Ptr struct {
stmt *Stmt
ocibnd *C.OCIBind
ociNumber C.OCINumber
isNull C.sb2
value *int16
}
func (bnd *bndInt16Ptr) bind(value *int16, position int, stmt *Stmt) error {
bnd.stmt = stmt
bnd.value = value
if value == nil {
bnd.isNull = C.sb2(-1)
} else {
r := C.OCINumberFromInt(
bnd.stmt.ses.srv.env.ocierr, //OCIError *err,
unsafe.Pointer(value), //const void *inum,
2, //uword inum_length,
C.OCI_NUMBER_SIGNED, //uword inum_s_flag,
&bnd.ociNumber) //OCINumber *number );
if r == C.OCI_ERROR {
return bnd.stmt.ses.srv.env.ociError()
}
}
r := C.OCIBINDBYPOS(
bnd.stmt.ocistmt, //OCIStmt *stmtp,
(**C.OCIBind)(&bnd.ocibnd), //OCIBind **bindpp,
bnd.stmt.ses.srv.env.ocierr, //OCIError *errhp,
C.ub4(position), //ub4 position,
unsafe.Pointer(&bnd.ociNumber), //void *valuep,
C.LENGTH_TYPE(C.sizeof_OCINumber), //sb8 value_sz,
C.SQLT_VNU, //ub2 dty,
unsafe.Pointer(&bnd.isNull), //void *indp,
nil, //ub2 *alenp,
nil, //ub2 *rcodep,
0, //ub4 maxarr_len,
nil, //ub4 *curelep,
C.OCI_DEFAULT) //ub4 mode );
if r == C.OCI_ERROR {
return bnd.stmt.ses.srv.env.ociError()
}
return nil
}
func (bnd *bndInt16Ptr) setPtr() error {
if bnd.isNull > C.sb2(-1) {
r := C.OCINumberToInt(
bnd.stmt.ses.srv.env.ocierr, //OCIError *err,
&bnd.ociNumber, //const OCINumber *number,
C.uword(2), //uword rsl_length,
C.OCI_NUMBER_SIGNED, //uword rsl_flag,
unsafe.Pointer(bnd.value)) //void *rsl );
if r == C.OCI_ERROR {
return bnd.stmt.ses.srv.env.ociError()
}
}
return nil
}
func (bnd *bndInt16Ptr) close() (err error) {
defer func() {
if value := recover(); value != nil {
err = errR(value)
}
}()
stmt := bnd.stmt
bnd.stmt = nil
bnd.ocibnd = nil
bnd.value = nil
stmt.putBnd(bndIdxInt16Ptr, bnd)
return nil
}