-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefString.go
More file actions
100 lines (90 loc) · 2.54 KB
/
defString.go
File metadata and controls
100 lines (90 loc) · 2.54 KB
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
// 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 defString struct {
rset *Rset
ocidef *C.OCIDefine
null C.sb2
isNullable bool
buf []byte
rlen C.ACTUAL_LENGTH_TYPE
}
func (def *defString) define(position int, columnSize int, isNullable bool, rset *Rset) error {
def.rset = rset
def.isNullable = isNullable
//Log.Infof("defString position=%d columnSize=%d", position, columnSize)
n := columnSize
// AL32UTF8: one db "char" can be 4 bytes on wire, esp. if the database's
// character set is not AL32UTF8 (e.g. some 8bit fixed width charset), and
// the column is VARCHAR2 with byte semantics.
//
// For example when the db's charset is EE8ISO8859P2, then a VARCHAR2(1) can
// contain an "ű", which is 2 bytes AL32UTF8.
if !rset.stmt.ses.srv.dbIsUTF8 {
n *= 2
}
if n == 0 {
n = 2
}
if n%2 != 0 {
n++
}
if def.buf == nil || cap(def.buf) < n {
def.buf = make([]byte, n)
}
// Create oci define handle
r := C.OCIDEFINEBYPOS(
def.rset.ocistmt, //OCIStmt *stmtp,
&def.ocidef, //OCIDefine **defnpp,
def.rset.stmt.ses.srv.env.ocierr, //OCIError *errhp,
C.ub4(position), //ub4 position,
unsafe.Pointer(&def.buf[0]), //void *valuep,
C.LENGTH_TYPE(n), //sb8 value_sz,
C.SQLT_CHR, //ub2 dty,
unsafe.Pointer(&def.null), //void *indp,
&def.rlen, //ub2 *rlenp,
nil, //ub2 *rcodep,
C.OCI_DEFAULT) //ub4 mode );
if r == C.OCI_ERROR {
return def.rset.stmt.ses.srv.env.ociError()
}
return nil
}
func (def *defString) value() (value interface{}, err error) {
if def.isNullable {
oraStringValue := String{IsNull: def.null < C.sb2(0)}
if !oraStringValue.IsNull {
oraStringValue.Value = string(def.buf[:int(def.rlen)])
}
return oraStringValue, nil
}
if def.null < C.sb2(0) {
return "", nil
}
return string(def.buf[:int(def.rlen)]), nil
}
func (def *defString) alloc() error {
return nil
}
func (def *defString) free() {
}
func (def *defString) close() (err error) {
defer func() {
if value := recover(); value != nil {
err = errR(value)
}
}()
rset := def.rset
def.rset = nil
def.ocidef = nil
clear(def.buf, 32)
rset.putDef(defIdxString, def)
return nil
}