ruby-oci8 2.1.1-x86-mingw32 → 2.1.2-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog +18 -0
- data/NEWS +23 -0
- data/VERSION +1 -1
- data/lib/oci8.rb +2 -2
- data/lib/oci8/oci8.rb +1 -0
- data/lib/oci8/properties.rb +4 -3
- data/lib/oci8lib_18.map +723 -723
- data/lib/oci8lib_18.so +0 -0
- data/lib/oci8lib_191.map +737 -737
- data/lib/oci8lib_191.so +0 -0
- metadata +4 -4
data/ChangeLog
CHANGED
@@ -1,3 +1,21 @@
|
|
1
|
+
2012-04-28 KUBO Takehiro <kubo@jiubao.org>
|
2
|
+
* NEWS: add changes between 2.1.2 and 2.1.1
|
3
|
+
* VERSION: change the version to 2.1.2.
|
4
|
+
|
5
|
+
2012-04-28 KUBO Takehiro <kubo@jiubao.org>
|
6
|
+
* lib/oci8/oci8.rb, lib/oci8/properties.rb: disable statement caching by default.
|
7
|
+
This is workaround about a SIGSEGV issue.
|
8
|
+
See: https://github.com/rsim/oracle-enhanced/issues/162
|
9
|
+
|
10
|
+
2012-04-28 KUBO Takehiro <kubo@jiubao.org>
|
11
|
+
* ext/oci8/oci8lib.c: delete code which overwrites signal handlers
|
12
|
+
registered by ruby. This was committed by mistake.
|
13
|
+
See: http://rubyforge.org/forum/forum.php?thread_id=50690&forum_id=1078
|
14
|
+
|
15
|
+
2012-04-24 KUBO Takehiro <kubo@jiubao.org>
|
16
|
+
* ext/oci8/metadata.c: fix internal heap error in OCI.
|
17
|
+
(github issue #12 reported by Yasuo Honda)
|
18
|
+
|
1
19
|
2012-04-22 KUBO Takehiro <kubo@jiubao.org>
|
2
20
|
* VERSION: update to 2.1.1.
|
3
21
|
* README.md: add links.
|
data/NEWS
CHANGED
@@ -1,5 +1,26 @@
|
|
1
1
|
# @markup markdown
|
2
2
|
|
3
|
+
2.1.2
|
4
|
+
=====
|
5
|
+
|
6
|
+
Specification changes
|
7
|
+
---------------------
|
8
|
+
|
9
|
+
### Statement caching in OCI is disabled by default.
|
10
|
+
|
11
|
+
This is workaround about a SIGSEGV issue.
|
12
|
+
See: [oracle enhanced issue #162](https://github.com/rsim/oracle-enhanced/issues/162)
|
13
|
+
Fixed Issues
|
14
|
+
------------
|
15
|
+
|
16
|
+
- delete code which overwrites signal handlers registered by ruby.
|
17
|
+
See: [rubyforge thread 50690](http://rubyforge.org/forum/forum.php?thread_id=50690&forum_id=1078)
|
18
|
+
|
19
|
+
- fix internal heap error in OCI.
|
20
|
+
See: [github issue #12](https://github.com/kubo/ruby-oci8/issues/12)
|
21
|
+
|
22
|
+
(reported by Yasuo Honda)
|
23
|
+
|
3
24
|
2.1.1
|
4
25
|
=====
|
5
26
|
|
@@ -16,6 +37,8 @@ The default cache size is 20. It can be changed as follows.
|
|
16
37
|
# change the size to 100.
|
17
38
|
OCI8.properties[:statement_cache_size] = 100
|
18
39
|
|
40
|
+
Note: The default size was changed to zero in 2.1.2.
|
41
|
+
|
19
42
|
Specification changes
|
20
43
|
---------------------
|
21
44
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.1.
|
1
|
+
2.1.2
|
data/lib/oci8.rb
CHANGED
@@ -42,10 +42,10 @@ else
|
|
42
42
|
end
|
43
43
|
require so_basename
|
44
44
|
|
45
|
-
if OCI8::VERSION != '2.1.
|
45
|
+
if OCI8::VERSION != '2.1.2'
|
46
46
|
require 'rbconfig'
|
47
47
|
so_name = so_basename + "." + Config::CONFIG['DLEXT']
|
48
|
-
raise "VERSION MISMATCH! #{so_name} version is #{OCI8::VERSION}, but oci8.rb version is 2.1.
|
48
|
+
raise "VERSION MISMATCH! #{so_name} version is #{OCI8::VERSION}, but oci8.rb version is 2.1.2."
|
49
49
|
end
|
50
50
|
|
51
51
|
require 'oci8/encoding-init.rb'
|
data/lib/oci8/oci8.rb
CHANGED
data/lib/oci8/properties.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# properties.rb -- implements OCI8.properties
|
2
2
|
#
|
3
|
-
# Copyright (C) 2010-
|
3
|
+
# Copyright (C) 2010-2012 KUBO Takehiro <kubo@jiubao.org>
|
4
4
|
|
5
5
|
#
|
6
6
|
class OCI8
|
@@ -9,7 +9,7 @@ class OCI8
|
|
9
9
|
:length_semantics => :byte,
|
10
10
|
:bind_string_as_nchar => false,
|
11
11
|
:float_conversion_type => :ruby,
|
12
|
-
:statement_cache_size =>
|
12
|
+
:statement_cache_size => 0,
|
13
13
|
}
|
14
14
|
|
15
15
|
if OCI8.oracle_client_version < OCI8::ORAVER_9_2
|
@@ -89,7 +89,8 @@ class OCI8
|
|
89
89
|
# [:statement_cache_size]
|
90
90
|
# (new in 2.1.1)
|
91
91
|
#
|
92
|
-
# The statement cache size per each session. The default
|
92
|
+
# The statement cache size per each session. The default size is 0, which
|
93
|
+
# means no statement cache, since 2.1.2. It was 20 in 2.1.1.
|
93
94
|
# This feature is available on Oracle 9iR2 or later.
|
94
95
|
# See: http://docs.oracle.com/cd/E11882_01/appdev.112/e10646/oci09adv.htm#i471377
|
95
96
|
#
|
data/lib/oci8lib_18.map
CHANGED
@@ -1,133 +1,133 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
6de5ff64 T _DeleteCriticalSection@4
|
2
|
+
6de42064 T _DllMain@12
|
3
3
|
6de410c0 T _DllMainCRTStartup@12
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
4
|
+
6de5ff74 T _EnterCriticalSection@4
|
5
|
+
6de5ff2c T _FormatMessageA@28
|
6
|
+
6de5ff4c T _FreeLibrary@4
|
7
|
+
6de5ff24 T _GetLastError@0
|
8
|
+
6de5ff44 T _GetModuleFileNameA@12
|
9
|
+
6de5ff04 T _GetModuleHandleA@4
|
10
|
+
6de5ff0c T _GetProcAddress@8
|
11
|
+
6de440c8 T _Init_oci8
|
12
|
+
6de58274 T _Init_oci8_apiwrap
|
13
|
+
6de48e7c T _Init_oci8_bind
|
14
|
+
6de46e24 T _Init_oci8_connection_pool
|
15
|
+
6de599c0 T _Init_oci8_encoding
|
16
|
+
6de42170 T _Init_oci8_env
|
17
|
+
6de427f0 T _Init_oci8_error
|
18
|
+
6de46434 T _Init_oci8_handle
|
19
|
+
6de4bd88 T _Init_oci8_lob
|
20
|
+
6de499e8 T _Init_oci8_metadata
|
21
|
+
6de48350 T _Init_oci8_stmt
|
22
|
+
6de5a51c T _Init_oci8_thread_util
|
23
|
+
6de5a8fc T _Init_oci8_win32
|
24
24
|
6de41870 T _Init_oci8lib_18
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
25
|
+
6de52c10 T _Init_oci_datetime
|
26
|
+
6de50f44 T _Init_oci_number
|
27
|
+
6de54ad4 T _Init_oci_object
|
28
|
+
6de4d094 T _Init_ora_date
|
29
|
+
6de5ff6c T _InitializeCriticalSection@4
|
30
|
+
6de5ffa4 T _InterlockedExchange@8
|
31
|
+
6de5ff8c T _IsDBCSLeadByteEx@8
|
32
|
+
6de5ff7c T _LeaveCriticalSection@4
|
33
|
+
6de5ff1c T _LoadLibraryA@4
|
34
|
+
6de5ff94 T _MultiByteToWideChar@24
|
35
|
+
6de5ffac T _RegCloseKey@4
|
36
|
+
6de5ffbc T _RegEnumKeyExA@32
|
37
|
+
6de5ffb4 T _RegOpenKeyExA@20
|
38
|
+
6de5ffc4 T _RegQueryValueExA@24
|
39
|
+
6de5ff9c T _Sleep@4
|
40
|
+
6de5ff3c T _TlsAlloc@0
|
41
|
+
6de5ff14 T _TlsGetValue@4
|
42
|
+
6de5ff34 T _TlsSetValue@8
|
43
|
+
6de5ff5c T _VirtualProtect@16
|
44
|
+
6de5ff54 T _VirtualQuery@12
|
45
|
+
6de5ff84 T _WideCharToMultiByte@32
|
46
|
+
6de5fec0 T _abort
|
47
|
+
6de5a4fc t _adapter
|
48
48
|
6de41204 t _at_exit_func
|
49
49
|
6de41030 T _atexit
|
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
|
-
|
50
|
+
6de46128 t _attr_get_binary
|
51
|
+
6de45b48 t _attr_get_boolean
|
52
|
+
6de46044 t _attr_get_integer
|
53
|
+
6de45ee4 t _attr_get_oradate
|
54
|
+
6de45cbc t _attr_get_sb1
|
55
|
+
6de45c04 t _attr_get_sb2
|
56
|
+
6de46378 t _attr_get_sb4
|
57
|
+
6de462b8 t _attr_get_sb8
|
58
|
+
6de461f0 t _attr_get_string
|
59
|
+
6de45e2c t _attr_get_ub1
|
60
|
+
6de45d74 t _attr_get_ub2
|
61
|
+
6de4517c t _attr_get_ub4
|
62
|
+
6de44f24 t _attr_get_ub8
|
63
|
+
6de453c8 t _attr_set_binary
|
64
|
+
6de45314 t _attr_set_boolean
|
65
|
+
6de45238 t _attr_set_integer
|
66
|
+
6de4579c t _attr_set_sb1
|
67
|
+
6de456d8 t _attr_set_sb2
|
68
|
+
6de4560c t _attr_set_sb4
|
69
|
+
6de45540 t _attr_set_sb8
|
70
|
+
6de45484 t _attr_set_string
|
71
|
+
6de4591c t _attr_set_ub1
|
72
|
+
6de4585c t _attr_set_ub2
|
73
|
+
6de45a94 t _attr_set_ub4
|
74
|
+
6de459dc t _attr_set_ub8
|
75
|
+
6de4a904 t _bfile_close
|
76
|
+
6de48854 t _bind_binary_double_get
|
77
|
+
6de48734 t _bind_binary_double_init
|
78
|
+
6de48830 t _bind_binary_double_set
|
79
|
+
6de4ee64 t _bind_float_get
|
80
|
+
6de5191c t _bind_free_common
|
81
|
+
6de51904 t _bind_init_common
|
82
|
+
6de51a24 t _bind_init_elem_common.clone.0
|
83
|
+
6de4e530 t _bind_integer_get
|
84
|
+
6de4f51c t _bind_integer_set
|
85
|
+
6de4b8d4 t _bind_lob_get
|
86
|
+
6de4a0b0 t _bind_lob_init
|
87
|
+
6de4a0c8 t _bind_lob_init_elem
|
88
|
+
6de4a26c t _bind_lob_post_bind_hook_for_nclob
|
89
|
+
6de4a124 t _bind_lob_set
|
90
|
+
6de53540 t _bind_name_type_post_bind_hook
|
91
|
+
6de52f1c t _bind_named_type_free
|
92
|
+
6de52d00 t _bind_named_type_get
|
93
|
+
6de52d0c t _bind_named_type_init
|
94
|
+
6de52fbc t _bind_named_type_init_elem
|
95
|
+
6de52da0 t _bind_named_type_mark
|
96
|
+
6de52d84 t _bind_named_type_set
|
97
|
+
6de51978 t _bind_ociinterval_ds_free
|
98
|
+
6de528f0 t _bind_ociinterval_ds_get
|
99
|
+
6de51ac8 t _bind_ociinterval_ds_init_elem
|
100
|
+
6de52bf4 t _bind_ociinterval_ds_set
|
101
|
+
6de5198c t _bind_ociinterval_ym_free
|
102
|
+
6de525b4 t _bind_ociinterval_ym_get
|
103
|
+
6de51ae4 t _bind_ociinterval_ym_init_elem
|
104
|
+
6de527d4 t _bind_ociinterval_ym_set
|
105
|
+
6de4e070 t _bind_ocinumber_get
|
106
|
+
6de4d524 t _bind_ocinumber_init
|
107
|
+
6de4d9a4 t _bind_ocinumber_init_elem
|
108
|
+
6de4f5b0 t _bind_ocinumber_set
|
109
|
+
6de519b4 t _bind_ocitimestamp_free
|
110
|
+
6de51ffc t _bind_ocitimestamp_get
|
111
|
+
6de51b1c t _bind_ocitimestamp_init_elem
|
112
|
+
6de524cc t _bind_ocitimestamp_set
|
113
|
+
6de519a0 t _bind_ocitimestamp_tz_free
|
114
|
+
6de51fe0 t _bind_ocitimestamp_tz_get
|
115
|
+
6de519c8 t _bind_ocitimestamp_tz_init
|
116
|
+
6de51b00 t _bind_ocitimestamp_tz_init_elem
|
117
|
+
6de52434 t _bind_ocitimestamp_tz_set
|
118
|
+
6de4c6cc t _bind_oradate_get
|
119
|
+
6de4c350 t _bind_oradate_init
|
120
|
+
6de4c368 t _bind_oradate_init_elem
|
121
|
+
6de4c3a4 t _bind_oradate_set
|
122
|
+
6de48928 t _bind_raw_get
|
123
|
+
6de48870 t _bind_raw_set
|
124
|
+
6de46eb8 t _bind_stmt_init
|
125
|
+
6de46ed0 t _bind_stmt_init_elem
|
126
|
+
6de46f80 t _bind_stmt_set
|
127
|
+
6de48a40 t _bind_string_get
|
128
|
+
6de48944 t _bind_string_init
|
129
|
+
6de48a98 t _bind_string_post_bind_hook
|
130
|
+
6de488cc t _bind_string_set
|
131
131
|
6de4124c t _blocking_function_ensure
|
132
132
|
6de412e0 t _blocking_function_execute
|
133
133
|
6de661c0 b _cBigDecimal
|
@@ -135,8 +135,8 @@
|
|
135
135
|
6de66124 b _cOCI8BFILE
|
136
136
|
6de66120 b _cOCI8BLOB
|
137
137
|
6de661dc b _cOCI8BindNamedType
|
138
|
-
6de660d8 b _cOCI8BindTypeBase
|
139
138
|
6de66028 b _cOCI8BindTypeBase
|
139
|
+
6de660d8 b _cOCI8BindTypeBase
|
140
140
|
6de66118 b _cOCI8CLOB
|
141
141
|
6de66114 b _cOCI8LOB
|
142
142
|
6de66e90 B _cOCI8MetadataBase
|
@@ -151,29 +151,29 @@
|
|
151
151
|
6de661c4 b _cRational
|
152
152
|
6de66078 b _cServer
|
153
153
|
6de66074 b _cSession
|
154
|
-
|
155
|
-
|
154
|
+
6de5fed0 T _calloc
|
155
|
+
6de44ec0 t _check_data_range
|
156
156
|
6de660f8 b _class_to_ptype
|
157
|
-
|
158
|
-
|
159
|
-
|
157
|
+
6de47458 t _clear_binds_iterator_proc
|
158
|
+
6de43d78 t _complex_logoff_execute
|
159
|
+
6de42fb8 t _complex_logoff_prepare
|
160
160
|
6de66192 b _const_PI2
|
161
161
|
6de6617c b _const_m1
|
162
162
|
6de661a8 b _const_mPI2
|
163
163
|
6de66150 b _const_p1
|
164
164
|
6de66166 b _const_p10
|
165
|
-
|
166
|
-
|
167
|
-
|
165
|
+
6de4310c t _copy_server_handle
|
166
|
+
6de43074 t _copy_session_handle
|
167
|
+
6de46db4 t _cpool_free_thread
|
168
168
|
6de66410 b _csid2name
|
169
169
|
6de66418 b _csname2id
|
170
|
-
|
170
|
+
6de5a8a8 t _dll_path
|
171
171
|
6de66030 b _dllmain_is_called
|
172
172
|
6de664e0 b _dtoa_CS_init
|
173
173
|
6de664f0 b _dtoa_CritSec
|
174
|
-
|
175
|
-
|
176
|
-
|
174
|
+
6de5f310 t _dtoa_lock
|
175
|
+
6de5f3d0 t _dtoa_lock_cleanup
|
176
|
+
6de5f420 t _dtoa_unlock
|
177
177
|
6de66e88 B _eOCIBreak
|
178
178
|
6de6604c b _eOCIContinue
|
179
179
|
6de66034 b _eOCIError
|
@@ -183,24 +183,24 @@
|
|
183
183
|
6de6603c b _eOCINoData
|
184
184
|
6de66048 b _eOCIStillExecuting
|
185
185
|
6de66038 b _eOCISuccessWithInfo
|
186
|
-
|
186
|
+
6de46f24 t _each_value
|
187
187
|
6de41214 t _ensure_func
|
188
|
-
|
189
|
-
|
190
|
-
|
188
|
+
6de5a594 t _enum_homes
|
189
|
+
6de5a5cc t _enum_homes_ensure
|
190
|
+
6de5a60c t _enum_homes_real
|
191
191
|
6de66050 b _errbuf
|
192
192
|
6de66054 b _errbufsiz
|
193
193
|
6de413e0 t _exec_sql
|
194
|
-
|
194
|
+
6de5fe60 T _fflush
|
195
195
|
6de66000 b _first_atexit
|
196
|
-
|
197
|
-
|
196
|
+
6de5fed8 T _fputc
|
197
|
+
6de5fe58 T _free
|
198
198
|
6de66520 b _freelist
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
199
|
+
6de5feb0 T _fwrite
|
200
|
+
6de5449c t _get_attribute
|
201
|
+
6de42238 t _get_error_msg
|
202
|
+
6de49bb4 t _get_rowid_attr
|
203
|
+
6de5fee8 T _getenv
|
204
204
|
6de66024 b _hModule.40943
|
205
205
|
6de6614c b _id_BigDecimal
|
206
206
|
6de66148 b _id_Rational
|
@@ -233,421 +233,421 @@
|
|
233
233
|
6de664d0 b _internal_mbstate.15179
|
234
234
|
6de664c0 b _internal_mbstate.15203
|
235
235
|
6de66498 b _key_dtor_list
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
236
|
+
6de4b254 t _lob_close
|
237
|
+
6de4acd0 t _lob_open
|
238
|
+
6de5fee0 T _localeconv
|
239
|
+
6de5fe90 T _localtime
|
240
240
|
6de6602c b _mOCI8BindType
|
241
241
|
6de660f0 b _mOCI8Metadata
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
242
|
+
6de5fe68 T _malloc
|
243
|
+
6de5ecf0 T _mbrlen
|
244
|
+
6de5ee60 T _mbrtowc
|
245
|
+
6de5ed40 T _mbsrtowcs
|
246
|
+
6de5fec8 T _memcpy
|
247
|
+
6de5fe98 T _memmove
|
248
|
+
6de5fe80 T _memset
|
249
|
+
6de49070 t _metadata_get_con
|
250
|
+
6de498d4 t _metadata_get_param
|
251
|
+
6de49834 t _metadata_get_param_at
|
252
|
+
6de49108 t _metadata_get_tdo_id
|
253
|
+
6de49700 t _metadata_get_type_metadata
|
254
|
+
6de49080 t _metadata_is_implicit_p
|
255
|
+
6de490c4 t _metadata_s_register_ptype
|
256
256
|
6de66424 B _mingw_initltsdrot_force
|
257
257
|
6de66428 B _mingw_initltsdyn_force
|
258
258
|
6de6642c B _mingw_initltssuo_force
|
259
259
|
6de66060 b _msghp
|
260
260
|
6de66010 b _next_atexit
|
261
|
-
|
261
|
+
6de58200 T _oci8_OCIArrayDescriptorAlloc
|
262
262
|
6de66408 b _oci8_OCIArrayDescriptorAlloc_func
|
263
|
-
|
263
|
+
6de58240 T _oci8_OCIArrayDescriptorFree
|
264
264
|
6de6640c b _oci8_OCIArrayDescriptorFree_func
|
265
|
-
|
266
|
-
|
265
|
+
6de5581c T _oci8_OCIAttrGet
|
266
|
+
6de54fb8 t _oci8_OCIAttrGet_cb
|
267
267
|
6de661e0 b _oci8_OCIAttrGet_func
|
268
|
-
|
269
|
-
|
268
|
+
6de557a8 T _oci8_OCIAttrGet_nb
|
269
|
+
6de5585c T _oci8_OCIAttrSet
|
270
270
|
6de661e4 b _oci8_OCIAttrSet_func
|
271
|
-
|
271
|
+
6de5589c T _oci8_OCIBindArrayOfStruct
|
272
272
|
6de661e8 b _oci8_OCIBindArrayOfStruct_func
|
273
|
-
|
273
|
+
6de558dc T _oci8_OCIBindByName
|
274
274
|
6de661ec b _oci8_OCIBindByName_func
|
275
|
-
|
275
|
+
6de55954 T _oci8_OCIBindByPos
|
276
276
|
6de661f0 b _oci8_OCIBindByPos_func
|
277
|
-
|
277
|
+
6de559c8 T _oci8_OCIBindObject
|
278
278
|
6de661f4 b _oci8_OCIBindObject_func
|
279
|
-
|
279
|
+
6de55a0c T _oci8_OCIBreak
|
280
280
|
6de661f8 b _oci8_OCIBreak_func
|
281
|
-
|
281
|
+
6de58088 T _oci8_OCIClientVersion
|
282
282
|
6de663f8 b _oci8_OCIClientVersion_func
|
283
|
-
|
283
|
+
6de55a40 T _oci8_OCICollAppend
|
284
284
|
6de661fc b _oci8_OCICollAppend_func
|
285
|
-
|
285
|
+
6de55a7c T _oci8_OCICollAssignElem
|
286
286
|
6de66200 b _oci8_OCICollAssignElem_func
|
287
|
-
|
287
|
+
6de55abc T _oci8_OCICollGetElem
|
288
288
|
6de66204 b _oci8_OCICollGetElem_func
|
289
|
-
|
289
|
+
6de55b00 T _oci8_OCICollSize
|
290
290
|
6de66208 b _oci8_OCICollSize_func
|
291
|
-
|
291
|
+
6de55b3c T _oci8_OCICollTrim
|
292
292
|
6de6620c b _oci8_OCICollTrim_func
|
293
|
-
|
293
|
+
6de578b8 T _oci8_OCIConnectionPoolCreate
|
294
294
|
6de663a0 b _oci8_OCIConnectionPoolCreate_func
|
295
|
-
|
295
|
+
6de5792c T _oci8_OCIConnectionPoolDestroy
|
296
296
|
6de663a4 b _oci8_OCIConnectionPoolDestroy_func
|
297
|
-
|
297
|
+
6de55708 t _oci8_OCIDBShutdown_cb
|
298
298
|
6de663fc b _oci8_OCIDBShutdown_func
|
299
|
-
|
300
|
-
|
299
|
+
6de580c4 T _oci8_OCIDBShutdown_nb
|
300
|
+
6de5573c t _oci8_OCIDBStartup_cb
|
301
301
|
6de66400 b _oci8_OCIDBStartup_func
|
302
|
-
|
303
|
-
|
302
|
+
6de5812c T _oci8_OCIDBStartup_nb
|
303
|
+
6de57960 T _oci8_OCIDateTimeConstruct
|
304
304
|
6de663a8 b _oci8_OCIDateTimeConstruct_func
|
305
|
-
|
305
|
+
6de579f4 T _oci8_OCIDateTimeGetDate
|
306
306
|
6de663ac b _oci8_OCIDateTimeGetDate_func
|
307
|
-
|
308
|
-
|
307
|
+
6de57a34 T _oci8_OCIDateTimeGetTime
|
308
|
+
6de57a78 T _oci8_OCIDateTimeGetTimeZoneOffset
|
309
309
|
6de663b4 b _oci8_OCIDateTimeGetTimeZoneOffset_func
|
310
310
|
6de663b0 b _oci8_OCIDateTimeGetTime_func
|
311
|
-
|
311
|
+
6de55b78 T _oci8_OCIDefineArrayOfStruct
|
312
312
|
6de66210 b _oci8_OCIDefineArrayOfStruct_func
|
313
|
-
|
313
|
+
6de55bb8 T _oci8_OCIDefineByPos
|
314
314
|
6de66214 b _oci8_OCIDefineByPos_func
|
315
|
-
|
315
|
+
6de55c20 T _oci8_OCIDefineObject
|
316
316
|
6de66218 b _oci8_OCIDefineObject_func
|
317
|
-
|
317
|
+
6de54ffc t _oci8_OCIDescribeAny_cb
|
318
318
|
6de6621c b _oci8_OCIDescribeAny_func
|
319
|
-
|
320
|
-
|
319
|
+
6de55c64 T _oci8_OCIDescribeAny_nb
|
320
|
+
6de55cec T _oci8_OCIDescriptorAlloc
|
321
321
|
6de66220 b _oci8_OCIDescriptorAlloc_func
|
322
|
-
|
322
|
+
6de55d28 T _oci8_OCIDescriptorFree
|
323
323
|
6de66224 b _oci8_OCIDescriptorFree_func
|
324
|
-
|
324
|
+
6de57324 T _oci8_OCIEnvCreate
|
325
325
|
6de66360 b _oci8_OCIEnvCreate_func
|
326
|
-
|
326
|
+
6de55d60 T _oci8_OCIErrorGet
|
327
327
|
6de66228 b _oci8_OCIErrorGet_func
|
328
|
-
|
328
|
+
6de55da4 T _oci8_OCIHandleAlloc
|
329
329
|
6de6622c b _oci8_OCIHandleAlloc_func
|
330
|
-
|
330
|
+
6de55de0 T _oci8_OCIHandleFree
|
331
331
|
6de66230 b _oci8_OCIHandleFree_func
|
332
|
-
|
332
|
+
6de57ab4 T _oci8_OCIIntervalFromText
|
333
333
|
6de663b8 b _oci8_OCIIntervalFromText_func
|
334
|
-
|
334
|
+
6de57af0 T _oci8_OCIIntervalGetDaySecond
|
335
335
|
6de663bc b _oci8_OCIIntervalGetDaySecond_func
|
336
|
-
|
336
|
+
6de57b3c T _oci8_OCIIntervalGetYearMonth
|
337
337
|
6de663c0 b _oci8_OCIIntervalGetYearMonth_func
|
338
|
-
|
338
|
+
6de57b78 T _oci8_OCIIntervalSetDaySecond
|
339
339
|
6de663c4 b _oci8_OCIIntervalSetDaySecond_func
|
340
|
-
|
340
|
+
6de57bc4 T _oci8_OCIIntervalSetYearMonth
|
341
341
|
6de663c8 b _oci8_OCIIntervalSetYearMonth_func
|
342
|
-
|
342
|
+
6de55e14 T _oci8_OCILobAssign
|
343
343
|
6de66234 b _oci8_OCILobAssign_func
|
344
|
-
|
344
|
+
6de5540c t _oci8_OCILobClose_cb
|
345
345
|
6de66364 b _oci8_OCILobClose_func
|
346
|
-
|
347
|
-
|
346
|
+
6de57370 T _oci8_OCILobClose_nb
|
347
|
+
6de5543c t _oci8_OCILobCreateTemporary_cb
|
348
348
|
6de66368 b _oci8_OCILobCreateTemporary_func
|
349
|
-
|
350
|
-
|
349
|
+
6de573d4 T _oci8_OCILobCreateTemporary_nb
|
350
|
+
6de55080 t _oci8_OCILobFileCloseAll_cb
|
351
351
|
6de6623c b _oci8_OCILobFileCloseAll_func
|
352
|
-
|
353
|
-
|
352
|
+
6de55eb4 T _oci8_OCILobFileCloseAll_nb
|
353
|
+
6de55050 t _oci8_OCILobFileClose_cb
|
354
354
|
6de66238 b _oci8_OCILobFileClose_func
|
355
|
-
|
356
|
-
|
355
|
+
6de55e50 T _oci8_OCILobFileClose_nb
|
356
|
+
6de550a8 t _oci8_OCILobFileExists_cb
|
357
357
|
6de66240 b _oci8_OCILobFileExists_func
|
358
|
-
|
359
|
-
|
358
|
+
6de55f10 T _oci8_OCILobFileExists_nb
|
359
|
+
6de55f78 T _oci8_OCILobFileGetName
|
360
360
|
6de66244 b _oci8_OCILobFileGetName_func
|
361
|
-
|
361
|
+
6de550dc t _oci8_OCILobFileOpen_cb
|
362
362
|
6de66248 b _oci8_OCILobFileOpen_func
|
363
|
-
|
364
|
-
|
363
|
+
6de55fbc T _oci8_OCILobFileOpen_nb
|
364
|
+
6de56024 T _oci8_OCILobFileSetName
|
365
365
|
6de6624c b _oci8_OCILobFileSetName_func
|
366
|
-
|
366
|
+
6de57460 T _oci8_OCILobFreeTemporary
|
367
367
|
6de6636c b _oci8_OCILobFreeTemporary_func
|
368
|
-
|
368
|
+
6de55490 t _oci8_OCILobGetChunkSize_cb
|
369
369
|
6de66370 b _oci8_OCILobGetChunkSize_func
|
370
|
-
|
371
|
-
|
370
|
+
6de57494 T _oci8_OCILobGetChunkSize_nb
|
371
|
+
6de55590 t _oci8_OCILobGetLength2_cb
|
372
372
|
6de663e8 b _oci8_OCILobGetLength2_func
|
373
|
-
|
374
|
-
|
373
|
+
6de57e1c T _oci8_OCILobGetLength2_nb
|
374
|
+
6de55114 t _oci8_OCILobGetLength_cb
|
375
375
|
6de66250 b _oci8_OCILobGetLength_func
|
376
|
-
|
377
|
-
|
376
|
+
6de5607c T _oci8_OCILobGetLength_nb
|
377
|
+
6de574fc T _oci8_OCILobIsTemporary
|
378
378
|
6de66374 b _oci8_OCILobIsTemporary_func
|
379
|
-
|
379
|
+
6de554c4 t _oci8_OCILobLocatorAssign_cb
|
380
380
|
6de66378 b _oci8_OCILobLocatorAssign_func
|
381
|
-
|
382
|
-
|
381
|
+
6de57538 T _oci8_OCILobLocatorAssign_nb
|
382
|
+
6de560e4 T _oci8_OCILobLocatorIsInit
|
383
383
|
6de66254 b _oci8_OCILobLocatorIsInit_func
|
384
|
-
|
384
|
+
6de554f8 t _oci8_OCILobOpen_cb
|
385
385
|
6de6637c b _oci8_OCILobOpen_func
|
386
|
-
|
387
|
-
|
386
|
+
6de575a0 T _oci8_OCILobOpen_nb
|
387
|
+
6de555c4 t _oci8_OCILobRead2_cb
|
388
388
|
6de663ec b _oci8_OCILobRead2_func
|
389
|
-
|
390
|
-
|
389
|
+
6de57e84 T _oci8_OCILobRead2_nb
|
390
|
+
6de55148 t _oci8_OCILobRead_cb
|
391
391
|
6de66258 b _oci8_OCILobRead_func
|
392
|
-
|
393
|
-
|
392
|
+
6de56120 T _oci8_OCILobRead_nb
|
393
|
+
6de55648 t _oci8_OCILobTrim2_cb
|
394
394
|
6de663f0 b _oci8_OCILobTrim2_func
|
395
|
-
|
396
|
-
|
395
|
+
6de57f4c T _oci8_OCILobTrim2_nb
|
396
|
+
6de551b0 t _oci8_OCILobTrim_cb
|
397
397
|
6de6625c b _oci8_OCILobTrim_func
|
398
|
-
|
399
|
-
|
398
|
+
6de561b8 T _oci8_OCILobTrim_nb
|
399
|
+
6de55684 t _oci8_OCILobWrite2_cb
|
400
400
|
6de663f4 b _oci8_OCILobWrite2_func
|
401
|
-
|
402
|
-
|
401
|
+
6de57fc0 T _oci8_OCILobWrite2_nb
|
402
|
+
6de551e4 t _oci8_OCILobWrite_cb
|
403
403
|
6de66260 b _oci8_OCILobWrite_func
|
404
|
-
|
405
|
-
|
404
|
+
6de56220 T _oci8_OCILobWrite_nb
|
405
|
+
6de562c0 T _oci8_OCILogoff
|
406
406
|
6de66264 b _oci8_OCILogoff_func
|
407
|
-
|
407
|
+
6de55530 t _oci8_OCILogon2_cb
|
408
408
|
6de663cc b _oci8_OCILogon2_func
|
409
|
-
|
410
|
-
|
409
|
+
6de57c00 T _oci8_OCILogon2_nb
|
410
|
+
6de57608 T _oci8_OCIMessageGet
|
411
411
|
6de66380 b _oci8_OCIMessageGet_func
|
412
|
-
|
412
|
+
6de57644 T _oci8_OCIMessageOpen
|
413
413
|
6de66384 b _oci8_OCIMessageOpen_func
|
414
|
-
|
414
|
+
6de57d14 T _oci8_OCINlsCharSetIdToName
|
415
415
|
6de663d8 b _oci8_OCINlsCharSetIdToName_func
|
416
|
-
|
416
|
+
6de57d58 T _oci8_OCINlsCharSetNameToId
|
417
417
|
6de663dc b _oci8_OCINlsCharSetNameToId_func
|
418
|
-
|
418
|
+
6de562f4 T _oci8_OCINumberAbs
|
419
419
|
6de66268 b _oci8_OCINumberAbs_func
|
420
|
-
|
420
|
+
6de5632c T _oci8_OCINumberAdd
|
421
421
|
6de6626c b _oci8_OCINumberAdd_func
|
422
|
-
|
422
|
+
6de56368 T _oci8_OCINumberArcCos
|
423
423
|
6de66270 b _oci8_OCINumberArcCos_func
|
424
|
-
|
424
|
+
6de5639c T _oci8_OCINumberArcSin
|
425
425
|
6de66274 b _oci8_OCINumberArcSin_func
|
426
|
-
|
427
|
-
|
426
|
+
6de563d4 T _oci8_OCINumberArcTan
|
427
|
+
6de5640c T _oci8_OCINumberArcTan2
|
428
428
|
6de6627c b _oci8_OCINumberArcTan2_func
|
429
429
|
6de66278 b _oci8_OCINumberArcTan_func
|
430
|
-
|
430
|
+
6de56448 T _oci8_OCINumberAssign
|
431
431
|
6de66280 b _oci8_OCINumberAssign_func
|
432
|
-
|
432
|
+
6de5647c T _oci8_OCINumberCeil
|
433
433
|
6de66284 b _oci8_OCINumberCeil_func
|
434
|
-
|
434
|
+
6de564b4 T _oci8_OCINumberCmp
|
435
435
|
6de66288 b _oci8_OCINumberCmp_func
|
436
|
-
|
436
|
+
6de564f0 T _oci8_OCINumberCos
|
437
437
|
6de6628c b _oci8_OCINumberCos_func
|
438
|
-
|
438
|
+
6de56524 T _oci8_OCINumberDiv
|
439
439
|
6de66290 b _oci8_OCINumberDiv_func
|
440
|
-
|
440
|
+
6de56560 T _oci8_OCINumberExp
|
441
441
|
6de66294 b _oci8_OCINumberExp_func
|
442
|
-
|
442
|
+
6de56598 T _oci8_OCINumberFloor
|
443
443
|
6de66298 b _oci8_OCINumberFloor_func
|
444
|
-
|
444
|
+
6de565cc T _oci8_OCINumberFromInt
|
445
445
|
6de6629c b _oci8_OCINumberFromInt_func
|
446
|
-
|
446
|
+
6de56608 T _oci8_OCINumberFromReal
|
447
447
|
6de662a0 b _oci8_OCINumberFromReal_func
|
448
|
-
|
448
|
+
6de56644 T _oci8_OCINumberFromText
|
449
449
|
6de662a4 b _oci8_OCINumberFromText_func
|
450
|
-
|
450
|
+
6de56690 T _oci8_OCINumberHypCos
|
451
451
|
6de662a8 b _oci8_OCINumberHypCos_func
|
452
|
-
|
452
|
+
6de566c4 T _oci8_OCINumberHypSin
|
453
453
|
6de662ac b _oci8_OCINumberHypSin_func
|
454
|
-
|
454
|
+
6de566fc T _oci8_OCINumberHypTan
|
455
455
|
6de662b0 b _oci8_OCINumberHypTan_func
|
456
|
-
|
456
|
+
6de56734 T _oci8_OCINumberIntPower
|
457
457
|
6de662b4 b _oci8_OCINumberIntPower_func
|
458
|
-
|
458
|
+
6de5768c T _oci8_OCINumberIsInt
|
459
459
|
6de66388 b _oci8_OCINumberIsInt_func
|
460
|
-
|
460
|
+
6de56770 T _oci8_OCINumberIsZero
|
461
461
|
6de662b8 b _oci8_OCINumberIsZero_func
|
462
|
-
|
462
|
+
6de567a4 T _oci8_OCINumberLn
|
463
463
|
6de662bc b _oci8_OCINumberLn_func
|
464
|
-
|
464
|
+
6de567dc T _oci8_OCINumberLog
|
465
465
|
6de662c0 b _oci8_OCINumberLog_func
|
466
|
-
|
466
|
+
6de56818 T _oci8_OCINumberMod
|
467
467
|
6de662c4 b _oci8_OCINumberMod_func
|
468
|
-
|
468
|
+
6de56854 T _oci8_OCINumberMul
|
469
469
|
6de662c8 b _oci8_OCINumberMul_func
|
470
|
-
|
470
|
+
6de56890 T _oci8_OCINumberNeg
|
471
471
|
6de662cc b _oci8_OCINumberNeg_func
|
472
|
-
|
472
|
+
6de568c8 T _oci8_OCINumberPower
|
473
473
|
6de662d0 b _oci8_OCINumberPower_func
|
474
|
-
|
474
|
+
6de57738 T _oci8_OCINumberPrec
|
475
475
|
6de6638c b _oci8_OCINumberPrec_func
|
476
|
-
|
476
|
+
6de56904 T _oci8_OCINumberRound
|
477
477
|
6de662d4 b _oci8_OCINumberRound_func
|
478
|
-
|
478
|
+
6de57774 T _oci8_OCINumberSetPi
|
479
479
|
6de66390 b _oci8_OCINumberSetPi_func
|
480
|
-
|
480
|
+
6de56940 T _oci8_OCINumberSetZero
|
481
481
|
6de662d8 b _oci8_OCINumberSetZero_func
|
482
|
-
|
482
|
+
6de577a4 T _oci8_OCINumberShift
|
483
483
|
6de66394 b _oci8_OCINumberShift_func
|
484
|
-
|
484
|
+
6de577e0 T _oci8_OCINumberSign
|
485
485
|
6de66398 b _oci8_OCINumberSign_func
|
486
|
-
|
486
|
+
6de56974 T _oci8_OCINumberSin
|
487
487
|
6de662dc b _oci8_OCINumberSin_func
|
488
|
-
|
488
|
+
6de569ac T _oci8_OCINumberSqrt
|
489
489
|
6de662e0 b _oci8_OCINumberSqrt_func
|
490
|
-
|
490
|
+
6de569e4 T _oci8_OCINumberSub
|
491
491
|
6de662e4 b _oci8_OCINumberSub_func
|
492
|
-
|
492
|
+
6de56a20 T _oci8_OCINumberTan
|
493
493
|
6de662e8 b _oci8_OCINumberTan_func
|
494
|
-
|
494
|
+
6de56a54 T _oci8_OCINumberToInt
|
495
495
|
6de662ec b _oci8_OCINumberToInt_func
|
496
|
-
|
496
|
+
6de56a90 T _oci8_OCINumberToReal
|
497
497
|
6de662f0 b _oci8_OCINumberToReal_func
|
498
|
-
|
498
|
+
6de56acc T _oci8_OCINumberToText
|
499
499
|
6de662f4 b _oci8_OCINumberToText_func
|
500
|
-
|
500
|
+
6de56b18 T _oci8_OCINumberTrunc
|
501
501
|
6de662f8 b _oci8_OCINumberTrunc_func
|
502
|
-
|
502
|
+
6de56b54 T _oci8_OCIObjectFree
|
503
503
|
6de662fc b _oci8_OCIObjectFree_func
|
504
|
-
|
504
|
+
6de56b98 T _oci8_OCIObjectGetInd
|
505
505
|
6de66300 b _oci8_OCIObjectGetInd_func
|
506
|
-
|
506
|
+
6de56bd4 T _oci8_OCIObjectNew
|
507
507
|
6de66304 b _oci8_OCIObjectNew_func
|
508
|
-
|
508
|
+
6de55254 t _oci8_OCIObjectPin_cb
|
509
509
|
6de66308 b _oci8_OCIObjectPin_func
|
510
|
-
|
511
|
-
|
510
|
+
6de56c38 T _oci8_OCIObjectPin_nb
|
511
|
+
6de56cb8 T _oci8_OCIObjectUnpin
|
512
512
|
6de6630c b _oci8_OCIObjectUnpin_func
|
513
|
-
|
513
|
+
6de56cec T _oci8_OCIParamGet
|
514
514
|
6de66310 b _oci8_OCIParamGet_func
|
515
|
-
|
515
|
+
6de55778 t _oci8_OCIPing_cb
|
516
516
|
6de66404 b _oci8_OCIPing_func
|
517
|
-
|
518
|
-
|
517
|
+
6de5819c T _oci8_OCIPing_nb
|
518
|
+
6de56d28 T _oci8_OCIRawAssignBytes
|
519
519
|
6de66314 b _oci8_OCIRawAssignBytes_func
|
520
|
-
|
520
|
+
6de56d64 T _oci8_OCIRawPtr
|
521
521
|
6de66318 b _oci8_OCIRawPtr_func
|
522
|
-
|
522
|
+
6de56d98 T _oci8_OCIRawSize
|
523
523
|
6de6631c b _oci8_OCIRawSize_func
|
524
|
-
|
524
|
+
6de57880 T _oci8_OCIReset
|
525
525
|
6de6639c b _oci8_OCIReset_func
|
526
|
-
|
526
|
+
6de57c8c T _oci8_OCIRowidToChar
|
527
527
|
6de663d0 b _oci8_OCIRowidToChar_func
|
528
|
-
|
528
|
+
6de552a8 t _oci8_OCIServerAttach_cb
|
529
529
|
6de66320 b _oci8_OCIServerAttach_func
|
530
|
-
|
531
|
-
|
530
|
+
6de56dd0 T _oci8_OCIServerAttach_nb
|
531
|
+
6de56e40 T _oci8_OCIServerDetach
|
532
532
|
6de66324 b _oci8_OCIServerDetach_func
|
533
|
-
|
533
|
+
6de57cc8 T _oci8_OCIServerRelease
|
534
534
|
6de663d4 b _oci8_OCIServerRelease_func
|
535
|
-
|
535
|
+
6de56e74 T _oci8_OCIServerVersion
|
536
536
|
6de66328 b _oci8_OCIServerVersion_func
|
537
|
-
|
537
|
+
6de552e4 t _oci8_OCISessionBegin_cb
|
538
538
|
6de6632c b _oci8_OCISessionBegin_func
|
539
|
-
|
540
|
-
|
539
|
+
6de56ec0 T _oci8_OCISessionBegin_nb
|
540
|
+
6de56f30 T _oci8_OCISessionEnd
|
541
541
|
6de66330 b _oci8_OCISessionEnd_func
|
542
|
-
|
542
|
+
6de55320 t _oci8_OCIStmtExecute_cb
|
543
543
|
6de66334 b _oci8_OCIStmtExecute_func
|
544
|
-
|
545
|
-
|
544
|
+
6de56f6c T _oci8_OCIStmtExecute_nb
|
545
|
+
6de55370 t _oci8_OCIStmtFetch_cb
|
546
546
|
6de66338 b _oci8_OCIStmtFetch_func
|
547
|
-
|
548
|
-
|
547
|
+
6de56fec T _oci8_OCIStmtFetch_nb
|
548
|
+
6de5705c T _oci8_OCIStmtGetPieceInfo
|
549
549
|
6de6633c b _oci8_OCIStmtGetPieceInfo_func
|
550
|
-
|
551
|
-
|
550
|
+
6de570a8 T _oci8_OCIStmtPrepare
|
551
|
+
6de57d90 T _oci8_OCIStmtPrepare2
|
552
552
|
6de663e0 b _oci8_OCIStmtPrepare2_func
|
553
553
|
6de66340 b _oci8_OCIStmtPrepare_func
|
554
|
-
|
554
|
+
6de57de0 T _oci8_OCIStmtRelease
|
555
555
|
6de663e4 b _oci8_OCIStmtRelease_func
|
556
|
-
|
556
|
+
6de570e8 T _oci8_OCIStmtSetPieceInfo
|
557
557
|
6de66344 b _oci8_OCIStmtSetPieceInfo_func
|
558
|
-
|
558
|
+
6de57140 T _oci8_OCIStringAssignText
|
559
559
|
6de66348 b _oci8_OCIStringAssignText_func
|
560
|
-
|
560
|
+
6de5717c T _oci8_OCIStringPtr
|
561
561
|
6de6634c b _oci8_OCIStringPtr_func
|
562
|
-
|
562
|
+
6de571b4 T _oci8_OCIStringSize
|
563
563
|
6de66350 b _oci8_OCIStringSize_func
|
564
|
-
|
564
|
+
6de553ac t _oci8_OCITransCommit_cb
|
565
565
|
6de66354 b _oci8_OCITransCommit_func
|
566
|
-
|
567
|
-
|
568
|
-
|
566
|
+
6de571ec T _oci8_OCITransCommit_nb
|
567
|
+
6de57250 T _oci8_OCITransRollback
|
568
|
+
6de553dc t _oci8_OCITransRollback_cb
|
569
569
|
6de66358 b _oci8_OCITransRollback_func
|
570
|
-
|
571
|
-
|
570
|
+
6de57288 T _oci8_OCITransRollback_nb
|
571
|
+
6de572ec T _oci8_OCITypeTypeCode
|
572
572
|
6de6635c b _oci8_OCITypeTypeCode_func
|
573
|
-
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
|
579
|
-
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
|
591
|
-
|
592
|
-
|
593
|
-
|
594
|
-
|
595
|
-
|
596
|
-
|
597
|
-
|
598
|
-
|
599
|
-
|
600
|
-
|
573
|
+
6de431a4 t _oci8_allocate_handles
|
574
|
+
6de4bd68 T _oci8_assign_bfile
|
575
|
+
6de4bd48 T _oci8_assign_blob
|
576
|
+
6de4bd08 T _oci8_assign_clob
|
577
|
+
6de4a668 t _oci8_assign_lob
|
578
|
+
6de4bd28 T _oci8_assign_nclob
|
579
|
+
6de42da4 t _oci8_autocommit_p
|
580
|
+
6de41d18 T _oci8_base_free
|
581
|
+
6de4a1d4 t _oci8_bfile_error
|
582
|
+
6de4a3bc t _oci8_bfile_exists_p
|
583
|
+
6de4a8ec t _oci8_bfile_get_dir_alias
|
584
|
+
6de4a8d4 t _oci8_bfile_get_filename
|
585
|
+
6de4a6f8 t _oci8_bfile_get_name
|
586
|
+
6de4ab74 t _oci8_bfile_initialize
|
587
|
+
6de4ab18 t _oci8_bfile_set_dir_alias
|
588
|
+
6de4aabc t _oci8_bfile_set_filename
|
589
|
+
6de4a9a4 t _oci8_bfile_set_name
|
590
|
+
6de47d40 t _oci8_bind
|
591
|
+
6de48a5c T _oci8_bind_free
|
592
|
+
6de4874c t _oci8_bind_get
|
593
|
+
6de48bb4 T _oci8_bind_get_data
|
594
|
+
6de48e48 T _oci8_bind_hp_obj_mark
|
595
|
+
6de48d0c t _oci8_bind_initialize
|
596
|
+
6de4879c t _oci8_bind_set
|
597
|
+
6de48c4c T _oci8_bind_set_data
|
598
|
+
6de4b100 t _oci8_blob_initialize
|
599
|
+
6de41dc4 T _oci8_blocking_region
|
600
|
+
6de43b84 t _oci8_break
|
601
601
|
6de66e70 B _oci8_cOCIHandle
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
|
612
|
-
|
613
|
-
|
614
|
-
|
615
|
-
|
616
|
-
|
617
|
-
|
618
|
-
|
619
|
-
|
620
|
-
|
621
|
-
|
622
|
-
|
623
|
-
|
624
|
-
|
625
|
-
|
626
|
-
|
627
|
-
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
|
632
|
-
|
633
|
-
|
634
|
-
|
635
|
-
|
636
|
-
|
637
|
-
|
638
|
-
|
639
|
-
|
640
|
-
|
641
|
-
|
642
|
-
|
643
|
-
|
644
|
-
|
645
|
-
|
602
|
+
6de5980c T _oci8_charset_id2name
|
603
|
+
6de59688 t _oci8_charset_name2id
|
604
|
+
6de42ab4 T _oci8_check_error_
|
605
|
+
6de44e74 T _oci8_check_pid_consistency
|
606
|
+
6de4b158 t _oci8_clob_initialize
|
607
|
+
6de43630 t _oci8_commit
|
608
|
+
6de468ac t _oci8_cpool_free
|
609
|
+
6de4688c t _oci8_cpool_init
|
610
|
+
6de46a3c t _oci8_cpool_initialize
|
611
|
+
6de468e0 t _oci8_cpool_mark
|
612
|
+
6de4689c t _oci8_cpool_pool_name
|
613
|
+
6de468f8 t _oci8_cpool_reinitialize
|
614
|
+
6de4ee94 T _oci8_dbl_to_onum
|
615
|
+
6de41c1c T _oci8_define_bind_class
|
616
|
+
6de48104 t _oci8_define_by_pos
|
617
|
+
6de41b54 T _oci8_define_class
|
618
|
+
6de41bb4 T _oci8_define_class_under
|
619
|
+
6de497d4 t _oci8_describe
|
620
|
+
6de4943c t _oci8_do_describe
|
621
|
+
6de42a30 T _oci8_do_env_raise
|
622
|
+
6de43f14 T _oci8_do_parse_connect_string
|
623
|
+
6de429fc T _oci8_do_raise
|
624
|
+
6de42ce0 T _oci8_do_raise_by_msgno
|
625
|
+
6de42a64 T _oci8_do_raise_init_error
|
626
|
+
6de426d0 t _oci8_error_initialize
|
627
|
+
6de41e1c T _oci8_exec_sql
|
628
|
+
6de41e84 T _oci8_find_symbol
|
629
|
+
6de48fb4 T _oci8_get_bind
|
630
|
+
6de4277c T _oci8_get_error_code
|
631
|
+
6de42b44 T _oci8_get_error_message
|
632
|
+
6de41f58 T _oci8_get_handle
|
633
|
+
6de59674 t _oci8_get_nls_ratio
|
634
|
+
6de448d4 T _oci8_get_oci_session
|
635
|
+
6de448bc T _oci8_get_oci_svcctx
|
636
|
+
6de5189c T _oci8_get_ocinumber
|
637
|
+
6de4a048 T _oci8_get_rowid_attr
|
638
|
+
6de49d6c T _oci8_get_sb1_attr
|
639
|
+
6de49e8c T _oci8_get_sb2_attr
|
640
|
+
6de4303c t _oci8_get_server_handle
|
641
|
+
6de43058 t _oci8_get_session_handle
|
642
|
+
6de49fb0 T _oci8_get_string_attr
|
643
|
+
6de44624 T _oci8_get_svcctx
|
644
|
+
6de49dfc T _oci8_get_ub2_attr
|
645
|
+
6de49f1c T _oci8_get_ub4_attr
|
646
646
|
6de66e7c B _oci8_global_envhp
|
647
|
-
|
648
|
-
|
649
|
-
|
650
|
-
|
647
|
+
6de45148 t _oci8_handle_cleanup
|
648
|
+
6de44fe4 t _oci8_handle_free
|
649
|
+
6de45004 t _oci8_handle_initialize
|
650
|
+
6de44ea8 t _oci8_handle_mark
|
651
651
|
6de66fec B _oci8_have_OCIArrayDescriptorAlloc
|
652
652
|
6de66fc8 B _oci8_have_OCIArrayDescriptorFree
|
653
653
|
6de6705c B _oci8_have_OCIAttrGet
|
@@ -802,108 +802,109 @@
|
|
802
802
|
6de66e78 B _oci8_id_set
|
803
803
|
6de6605c b _oci8_id_set_backtrace
|
804
804
|
6de66020 B _oci8_in_finalizer
|
805
|
-
|
806
|
-
|
807
|
-
|
808
|
-
|
809
|
-
|
810
|
-
|
811
|
-
|
812
|
-
|
813
|
-
|
814
|
-
|
815
|
-
|
816
|
-
|
817
|
-
|
818
|
-
|
819
|
-
|
820
|
-
|
821
|
-
|
822
|
-
|
823
|
-
|
824
|
-
|
825
|
-
|
826
|
-
|
827
|
-
|
828
|
-
|
829
|
-
|
830
|
-
|
831
|
-
|
832
|
-
|
833
|
-
|
834
|
-
|
835
|
-
|
836
|
-
|
837
|
-
|
838
|
-
|
839
|
-
|
840
|
-
|
841
|
-
|
842
|
-
|
843
|
-
|
844
|
-
|
845
|
-
|
846
|
-
|
847
|
-
|
848
|
-
|
849
|
-
|
850
|
-
|
851
|
-
|
852
|
-
|
853
|
-
|
854
|
-
|
855
|
-
|
856
|
-
|
857
|
-
|
858
|
-
|
859
|
-
|
860
|
-
|
861
|
-
|
862
|
-
|
863
|
-
|
864
|
-
|
865
|
-
|
866
|
-
|
867
|
-
|
868
|
-
|
869
|
-
|
870
|
-
|
871
|
-
|
872
|
-
|
873
|
-
|
874
|
-
|
875
|
-
|
876
|
-
|
877
|
-
|
878
|
-
|
879
|
-
|
880
|
-
|
881
|
-
|
882
|
-
|
883
|
-
|
884
|
-
|
885
|
-
|
886
|
-
|
887
|
-
|
888
|
-
|
889
|
-
|
890
|
-
|
891
|
-
|
892
|
-
|
893
|
-
|
894
|
-
|
895
|
-
|
896
|
-
|
897
|
-
|
898
|
-
|
899
|
-
|
900
|
-
|
901
|
-
|
902
|
-
|
903
|
-
|
904
|
-
|
905
|
-
|
906
|
-
|
805
|
+
6de41ccc T _oci8_link_to_parent
|
806
|
+
6de4a5c8 t _oci8_lob_available_p
|
807
|
+
6de4b34c t _oci8_lob_close
|
808
|
+
6de4aee4 t _oci8_lob_do_initialize
|
809
|
+
6de4a580 t _oci8_lob_eof_p
|
810
|
+
6de4b2f4 t _oci8_lob_flush
|
811
|
+
6de4b7f8 t _oci8_lob_free
|
812
|
+
6de4a458 t _oci8_lob_get_chunk_size
|
813
|
+
6de4a4f4 t _oci8_lob_get_length.clone.0
|
814
|
+
6de4a208 t _oci8_lob_get_pos
|
815
|
+
6de4a5a8 t _oci8_lob_get_size
|
816
|
+
6de4a09c t _oci8_lob_get_sync
|
817
|
+
6de4a1f0 t _oci8_lob_mark
|
818
|
+
6de4b374 t _oci8_lob_read
|
819
|
+
6de4a088 t _oci8_lob_rewind
|
820
|
+
6de4bb24 t _oci8_lob_seek
|
821
|
+
6de4a220 t _oci8_lob_set_char_width
|
822
|
+
6de4b230 t _oci8_lob_set_size
|
823
|
+
6de4b30c t _oci8_lob_set_sync
|
824
|
+
6de4b184 t _oci8_lob_truncate
|
825
|
+
6de4ad78 t _oci8_lob_write
|
826
|
+
6de4383c t _oci8_logon2
|
827
|
+
6de42dd4 t _oci8_long_read_len
|
828
|
+
6de4bcf0 T _oci8_make_bfile
|
829
|
+
6de4bcd8 T _oci8_make_blob
|
830
|
+
6de4bca8 T _oci8_make_clob
|
831
|
+
6de41fe8 T _oci8_make_envhp
|
832
|
+
6de420d0 T _oci8_make_errhp
|
833
|
+
6de42420 t _oci8_make_exc
|
834
|
+
6de4ee40 T _oci8_make_float
|
835
|
+
6de4e474 T _oci8_make_integer
|
836
|
+
6de4a2fc t _oci8_make_lob
|
837
|
+
6de4bcc0 T _oci8_make_nclob
|
838
|
+
6de51b38 T _oci8_make_ocidate
|
839
|
+
6de527f0 T _oci8_make_ociinterval_ds
|
840
|
+
6de524f0 T _oci8_make_ociinterval_ym
|
841
|
+
6de4dfd0 T _oci8_make_ocinumber
|
842
|
+
6de51d70 T _oci8_make_ocitimestamp
|
843
|
+
6de492f8 T _oci8_metadata_create
|
844
|
+
6de49060 t _oci8_metadata_free
|
845
|
+
6de49098 t _oci8_metadata_mark
|
846
|
+
6de54884 t _oci8_named_coll_get_coll_element
|
847
|
+
6de53a80 t _oci8_named_coll_set_coll_element
|
848
|
+
6de52e1c t _oci8_named_type_check_offset.clone.1
|
849
|
+
6de52cb0 t _oci8_named_type_free
|
850
|
+
6de54a90 t _oci8_named_type_get_attribute
|
851
|
+
6de52cc8 t _oci8_named_type_initialize
|
852
|
+
6de52ddc t _oci8_named_type_mark
|
853
|
+
6de52ee4 t _oci8_named_type_null_p
|
854
|
+
6de5444c t _oci8_named_type_set_attribute
|
855
|
+
6de52ea0 t _oci8_named_type_set_null
|
856
|
+
6de52cf0 t _oci8_named_type_tdo
|
857
|
+
6de4b12c t _oci8_nclob_initialize
|
858
|
+
6de43518 t _oci8_non_blocking_p
|
859
|
+
6de4ea80 T _oci8_onum_to_dbl
|
860
|
+
6de43478 t _oci8_oracle_server_vernum
|
861
|
+
6de44070 t _oci8_parse_connect_string
|
862
|
+
6de44640 t _oci8_ping
|
863
|
+
6de435b0 t _oci8_rollback
|
864
|
+
6de5a524 T _oci8_run_native_thread
|
865
|
+
6de45070 t _oci8_s_allocate
|
866
|
+
6de4338c t _oci8_s_error_message
|
867
|
+
6de42d98 t _oci8_s_oracle_client_vernum
|
868
|
+
6de433b0 t _oci8_s_set_property
|
869
|
+
6de446f8 t _oci8_server_attach
|
870
|
+
6de436b0 t _oci8_session_begin
|
871
|
+
6de44a40 t _oci8_set_action
|
872
|
+
6de42dbc t _oci8_set_autocommit
|
873
|
+
6de44ce4 t _oci8_set_client_identifier
|
874
|
+
6de448ec t _oci8_set_client_info
|
875
|
+
6de509bc T _oci8_set_integer
|
876
|
+
6de42f04 t _oci8_set_long_read_len
|
877
|
+
6de44b94 t _oci8_set_module
|
878
|
+
6de5962c t _oci8_set_nls_ratio
|
879
|
+
6de43c14 t _oci8_set_non_blocking
|
880
|
+
6de51b9c T _oci8_set_ocidate
|
881
|
+
6de52904 T _oci8_set_ociinterval_ds
|
882
|
+
6de525c8 T _oci8_set_ociinterval_ym
|
883
|
+
6de50a3c T _oci8_set_ocinumber
|
884
|
+
6de52018 T _oci8_set_ocitimestamp_tz
|
885
|
+
6de42de4 t _oci8_set_prefetch_rows
|
886
|
+
6de47258 t _oci8_stmt_aref
|
887
|
+
6de470e0 t _oci8_stmt_aset
|
888
|
+
6de473d0 t _oci8_stmt_clear_binds
|
889
|
+
6de47080 t _oci8_stmt_defined_p
|
890
|
+
6de47604 t _oci8_stmt_do_fetch
|
891
|
+
6de47b40 t _oci8_stmt_execute
|
892
|
+
6de47730 t _oci8_stmt_fetch
|
893
|
+
6de47798 t _oci8_stmt_free
|
894
|
+
6de46f48 T _oci8_stmt_get
|
895
|
+
6de47530 t _oci8_stmt_get_param
|
896
|
+
6de472a4 t _oci8_stmt_get_param_count
|
897
|
+
6de472d8 t _oci8_stmt_get_row_count
|
898
|
+
6de4730c t _oci8_stmt_get_rowid
|
899
|
+
6de47340 t _oci8_stmt_get_stmt_type
|
900
|
+
6de47828 t _oci8_stmt_initialize
|
901
|
+
6de47044 t _oci8_stmt_keys
|
902
|
+
6de47014 t _oci8_stmt_mark
|
903
|
+
6de47480 t _oci8_stmt_set_prefetch_rows
|
904
|
+
6de42d80 t _oci8_svcctx_associate_free
|
905
|
+
6de42ea8 t _oci8_svcctx_free
|
906
|
+
6de42e10 t _oci8_svcctx_init
|
907
|
+
6de42f34 t _oci8_svcctx_logoff
|
907
908
|
6de660ac b _oci8_sym_alter_stmt
|
908
909
|
6de660b0 b _oci8_sym_begin_stmt
|
909
910
|
6de660a4 b _oci8_sym_create_stmt
|
@@ -913,222 +914,221 @@
|
|
913
914
|
6de660a0 b _oci8_sym_insert_stmt
|
914
915
|
6de66094 b _oci8_sym_select_stmt
|
915
916
|
6de66098 b _oci8_sym_update_stmt
|
916
|
-
|
917
|
-
|
918
|
-
|
917
|
+
6de53264 t _oci8_tdo_free
|
918
|
+
6de52dfc t _oci8_tdo_mark
|
919
|
+
6de532d4 t _oci8_tdo_setup
|
919
920
|
6de66e80 B _oci8_tls_key
|
920
|
-
|
921
|
-
|
922
|
-
|
923
|
-
|
924
|
-
|
925
|
-
|
926
|
-
|
927
|
-
|
928
|
-
|
929
|
-
|
930
|
-
|
931
|
-
|
932
|
-
|
933
|
-
|
934
|
-
|
935
|
-
|
936
|
-
|
937
|
-
|
938
|
-
|
939
|
-
|
940
|
-
|
941
|
-
|
942
|
-
|
943
|
-
|
944
|
-
|
945
|
-
|
946
|
-
|
947
|
-
|
948
|
-
|
949
|
-
|
950
|
-
|
951
|
-
|
952
|
-
|
953
|
-
|
954
|
-
|
955
|
-
|
956
|
-
|
957
|
-
|
958
|
-
|
959
|
-
|
960
|
-
|
961
|
-
|
962
|
-
|
963
|
-
|
964
|
-
|
965
|
-
|
966
|
-
|
967
|
-
|
968
|
-
|
969
|
-
|
970
|
-
|
971
|
-
|
972
|
-
|
973
|
-
|
974
|
-
|
975
|
-
|
976
|
-
|
977
|
-
|
978
|
-
|
979
|
-
|
980
|
-
|
981
|
-
|
982
|
-
|
983
|
-
|
984
|
-
|
985
|
-
|
986
|
-
|
987
|
-
|
988
|
-
|
989
|
-
|
990
|
-
|
991
|
-
|
921
|
+
6de41c84 T _oci8_unlink_from_parent
|
922
|
+
6de506a0 t _omath_acos
|
923
|
+
6de50534 t _omath_asin
|
924
|
+
6de50cd4 t _omath_atan
|
925
|
+
6de5080c t _omath_atan2
|
926
|
+
6de50ea8 t _omath_cos
|
927
|
+
6de50c38 t _omath_cosh
|
928
|
+
6de50a64 t _omath_exp
|
929
|
+
6de502d0 t _omath_log
|
930
|
+
6de501c0 t _omath_log10
|
931
|
+
6de50e0c t _omath_sin
|
932
|
+
6de50b9c t _omath_sinh
|
933
|
+
6de500b4 t _omath_sqrt
|
934
|
+
6de50d70 t _omath_tan
|
935
|
+
6de50b00 t _omath_tanh
|
936
|
+
6de4d664 t _onum__dump
|
937
|
+
6de4e1dc t _onum_abs
|
938
|
+
6de4fe2c t _onum_add
|
939
|
+
6de4e968 t _onum_ceil
|
940
|
+
6de4f5f0 t _onum_cmp
|
941
|
+
6de4ebe8 t _onum_coerce
|
942
|
+
6de4f90c t _onum_div
|
943
|
+
6de4d6ac t _onum_dump
|
944
|
+
6de4d6e0 t _onum_f_new
|
945
|
+
6de4e9f4 t _onum_floor
|
946
|
+
6de4da8c t _onum_has_decimal_part_p
|
947
|
+
6de4d4c8 t _onum_hash
|
948
|
+
6de4ffc0 t _onum_initialize
|
949
|
+
6de4d868 t _onum_initialize_copy
|
950
|
+
6de4de64 t _onum_inspect
|
951
|
+
6de4f7dc t _onum_mod
|
952
|
+
6de4fb04 t _onum_mul
|
953
|
+
6de4e3e8 t _onum_neg
|
954
|
+
6de4f6cc t _onum_power
|
955
|
+
6de4e868 t _onum_round
|
956
|
+
6de4e268 t _onum_round_prec
|
957
|
+
6de4df4c t _onum_s_alloc
|
958
|
+
6de4e0a4 t _onum_s_load
|
959
|
+
6de4e130 t _onum_shift
|
960
|
+
6de4fc98 t _onum_sub
|
961
|
+
6de4dc24 t _onum_to_char
|
962
|
+
6de4db08 t _onum_to_d
|
963
|
+
6de4ebac t _onum_to_f
|
964
|
+
6de4e7d4 t _onum_to_i
|
965
|
+
6de4d4c0 t _onum_to_onum
|
966
|
+
6de4e564 t _onum_to_r
|
967
|
+
6de4de40 t _onum_to_s
|
968
|
+
6de4e314 t _onum_trunc
|
969
|
+
6de4da0c t _onum_zero_p
|
970
|
+
6de4c488 t _ora_date_cmp
|
971
|
+
6de4c638 t _ora_date_day
|
972
|
+
6de4c7f4 t _ora_date_dump
|
973
|
+
6de4c424 t _ora_date_hash
|
974
|
+
6de4c608 t _ora_date_hour
|
975
|
+
6de4cd14 t _ora_date_initialize
|
976
|
+
6de4ccb0 t _ora_date_initialize_copy
|
977
|
+
6de4c5d8 t _ora_date_minute
|
978
|
+
6de4c664 t _ora_date_month
|
979
|
+
6de4c7ac t _ora_date_s_allocate
|
980
|
+
6de4c724 t _ora_date_s_load
|
981
|
+
6de4cc04 t _ora_date_s_now
|
982
|
+
6de4c5a8 t _ora_date_second
|
983
|
+
6de4c960 t _ora_date_set_day
|
984
|
+
6de4c8f8 t _ora_date_set_hour
|
985
|
+
6de4c890 t _ora_date_set_minute
|
986
|
+
6de4c9cc t _ora_date_set_month
|
987
|
+
6de4c828 t _ora_date_set_second
|
988
|
+
6de4ca38 t _ora_date_set_year
|
989
|
+
6de4cac8 t _ora_date_to_a
|
990
|
+
6de4cb80 t _ora_date_to_s
|
991
|
+
6de4c574 t _ora_date_trunc
|
992
|
+
6de4c690 t _ora_date_year
|
992
993
|
6de66084 b _oracle_client_vernum
|
993
994
|
6de67070 B _oracle_client_version
|
994
|
-
|
995
|
-
|
996
|
-
|
995
|
+
6de5a47c T _oranumber_dump
|
996
|
+
6de59f40 T _oranumber_from_str
|
997
|
+
6de59a90 T _oranumber_to_str
|
997
998
|
6de66e50 b _p5s
|
998
999
|
6de66550 b _private_mem
|
999
1000
|
6de660f4 b _ptype_to_class
|
1000
|
-
|
1001
|
-
|
1002
|
-
|
1003
|
-
|
1004
|
-
|
1005
|
-
|
1006
|
-
|
1007
|
-
|
1008
|
-
|
1009
|
-
|
1010
|
-
|
1011
|
-
|
1012
|
-
|
1013
|
-
|
1014
|
-
|
1015
|
-
|
1016
|
-
|
1017
|
-
|
1018
|
-
|
1019
|
-
|
1020
|
-
|
1021
|
-
|
1022
|
-
|
1023
|
-
|
1024
|
-
|
1025
|
-
|
1026
|
-
|
1027
|
-
|
1028
|
-
|
1029
|
-
|
1030
|
-
|
1031
|
-
|
1032
|
-
|
1033
|
-
|
1034
|
-
|
1035
|
-
|
1036
|
-
|
1037
|
-
|
1038
|
-
|
1039
|
-
|
1040
|
-
|
1041
|
-
|
1042
|
-
|
1043
|
-
|
1044
|
-
|
1045
|
-
|
1046
|
-
|
1047
|
-
|
1048
|
-
|
1049
|
-
|
1050
|
-
|
1051
|
-
|
1052
|
-
|
1053
|
-
|
1054
|
-
|
1055
|
-
|
1056
|
-
|
1057
|
-
|
1058
|
-
|
1059
|
-
|
1060
|
-
|
1061
|
-
|
1062
|
-
|
1063
|
-
|
1064
|
-
|
1065
|
-
|
1066
|
-
|
1067
|
-
|
1068
|
-
|
1069
|
-
|
1070
|
-
|
1071
|
-
|
1072
|
-
|
1073
|
-
|
1074
|
-
|
1075
|
-
|
1076
|
-
|
1077
|
-
|
1078
|
-
|
1079
|
-
|
1080
|
-
|
1081
|
-
|
1082
|
-
|
1083
|
-
|
1084
|
-
|
1085
|
-
|
1086
|
-
|
1087
|
-
|
1088
|
-
|
1089
|
-
|
1090
|
-
|
1091
|
-
|
1092
|
-
|
1093
|
-
|
1094
|
-
|
1095
|
-
|
1096
|
-
|
1097
|
-
|
1098
|
-
|
1099
|
-
|
1100
|
-
|
1101
|
-
|
1102
|
-
|
1103
|
-
|
1104
|
-
|
1105
|
-
|
1106
|
-
|
1001
|
+
6de5a7ec t _raise_error
|
1002
|
+
6de5abc0 T _rb_Float
|
1003
|
+
6de5abe0 T _rb_ary_join
|
1004
|
+
6de5abb0 T _rb_ary_new
|
1005
|
+
6de5ab88 T _rb_ary_new2
|
1006
|
+
6de5aaf8 T _rb_ary_new3
|
1007
|
+
6de5abe8 T _rb_ary_new4
|
1008
|
+
6de5abd8 T _rb_ary_push
|
1009
|
+
6de5ab90 T _rb_ary_store
|
1010
|
+
6de5aa28 T _rb_ary_unshift
|
1011
|
+
6de5ac20 T _rb_assoc_new
|
1012
|
+
6de5aad0 T _rb_backref_get
|
1013
|
+
6de5ac28 T _rb_big2str
|
1014
|
+
6de5ab98 T _rb_block_given_p
|
1015
|
+
6de5aa38 T _rb_call_super
|
1016
|
+
6de5aab8 T _rb_check_safe_obj
|
1017
|
+
6de5a9c8 T _rb_check_type
|
1018
|
+
6de5a9d0 T _rb_class2name
|
1019
|
+
6de42d38 t _rb_class_of
|
1020
|
+
6de4c308 t _rb_class_of
|
1021
|
+
6de52c68 t _rb_class_of
|
1022
|
+
6de4d420 t _rb_class_of
|
1023
|
+
6de5ac00 T _rb_const_get
|
1024
|
+
6de5ac10 T _rb_cstr2inum
|
1025
|
+
6de5ac18 T _rb_cstr_to_dbl
|
1026
|
+
6de5a9a8 T _rb_data_object_alloc
|
1027
|
+
6de5aa58 T _rb_define_alias
|
1028
|
+
6de5ab58 T _rb_define_alloc_func
|
1029
|
+
6de5aa50 T _rb_define_attr
|
1030
|
+
6de5a9a0 T _rb_define_class
|
1031
|
+
6de5a998 T _rb_define_class_under
|
1032
|
+
6de5ab08 T _rb_define_const
|
1033
|
+
6de5ac60 T _rb_define_global_function
|
1034
|
+
6de5aa48 T _rb_define_method
|
1035
|
+
6de5ac58 T _rb_define_module_function
|
1036
|
+
6de5a990 T _rb_define_module_under
|
1037
|
+
6de5ab18 T _rb_define_private_method
|
1038
|
+
6de5ab10 T _rb_define_singleton_method
|
1039
|
+
6de5a9b8 T _rb_ensure
|
1040
|
+
6de5aae8 T _rb_eval_string
|
1041
|
+
6de5aa60 T _rb_exc_raise
|
1042
|
+
6de5abc8 T _rb_float_new
|
1043
|
+
6de5aa18 T _rb_funcall
|
1044
|
+
6de5a978 T _rb_gc
|
1045
|
+
6de5ab60 T _rb_gc_mark
|
1046
|
+
6de5aaf0 T _rb_global_variable
|
1047
|
+
6de5ab78 T _rb_hash_aref
|
1048
|
+
6de5abb8 T _rb_hash_aset
|
1049
|
+
6de5aba8 T _rb_hash_new
|
1050
|
+
6de5aaa0 T _rb_id2name
|
1051
|
+
6de5abf0 T _rb_include_module
|
1052
|
+
6de5ab50 T _rb_int2inum
|
1053
|
+
6de5a980 T _rb_intern
|
1054
|
+
6de5ab80 T _rb_iterate
|
1055
|
+
6de5ab30 T _rb_ivar_defined
|
1056
|
+
6de5aa90 T _rb_ivar_get
|
1057
|
+
6de5a9b0 T _rb_ivar_set
|
1058
|
+
6de5ab48 T _rb_ll2inum
|
1059
|
+
6de5ac38 T _rb_num2dbl
|
1060
|
+
6de5ab38 T _rb_num2ll
|
1061
|
+
6de5ab20 T _rb_num2long
|
1062
|
+
6de5ab40 T _rb_num2ull
|
1063
|
+
6de5aa98 T _rb_num2ulong
|
1064
|
+
6de5ac48 T _rb_num_coerce_bin
|
1065
|
+
6de5ac40 T _rb_num_coerce_cmp
|
1066
|
+
6de5ac50 T _rb_num_zerodiv
|
1067
|
+
6de5aa78 T _rb_obj_alloc
|
1068
|
+
6de5abd0 T _rb_obj_as_string
|
1069
|
+
6de5abf8 T _rb_obj_call_init
|
1070
|
+
6de5a9d8 T _rb_obj_classname
|
1071
|
+
6de5ab00 T _rb_obj_freeze
|
1072
|
+
6de5ab70 T _rb_obj_is_instance_of
|
1073
|
+
6de5a9c0 T _rb_obj_is_kind_of
|
1074
|
+
6de5a970 T _rb_raise
|
1075
|
+
6de5aac8 T _rb_reg_match
|
1076
|
+
6de5aad8 T _rb_reg_nth_match
|
1077
|
+
6de5ac08 T _rb_require
|
1078
|
+
6de5ac30 T _rb_respond_to
|
1079
|
+
6de5aa30 T _rb_scan_args
|
1080
|
+
6de5a988 T _rb_set_end_proc
|
1081
|
+
6de5aa70 T _rb_str_append
|
1082
|
+
6de5ab68 T _rb_str_freeze
|
1083
|
+
6de5aa68 T _rb_str_new
|
1084
|
+
6de5aa10 T _rb_str_new2
|
1085
|
+
6de5aab0 T _rb_string_value
|
1086
|
+
6de5aa88 T _rb_sys_fail
|
1087
|
+
6de5aa08 T _rb_tainted_str_new
|
1088
|
+
6de5a960 T _rb_thread_current
|
1089
|
+
6de5a968 T _rb_thread_wait_for
|
1090
|
+
6de5aac0 T _rb_thread_wakeup
|
1091
|
+
6de5aae0 T _rb_to_id
|
1092
|
+
6de4d468 t _rb_type
|
1093
|
+
6de5aaa8 T _rb_uint2inum
|
1094
|
+
6de5ab28 T _rb_ull2inum
|
1095
|
+
6de5a9e0 T _rb_w32_getenv
|
1096
|
+
6de5aa80 T _rb_w32_getpid
|
1097
|
+
6de5aa20 T _rb_w32_snprintf
|
1098
|
+
6de5aba0 T _rb_yield
|
1099
|
+
6de5ac68 T _rb_yield_values
|
1100
|
+
6de4d714 t _rboci8_type
|
1101
|
+
6de60200 t _register_frame_ctor
|
1102
|
+
6de49b7c t _rowid_ensure
|
1103
|
+
6de5a9f0 T _ruby_setenv
|
1104
|
+
6de5a9e8 T _ruby_strdup
|
1105
|
+
6de5a9f8 T _ruby_xfree
|
1106
|
+
6de5aa40 T _ruby_xmalloc
|
1107
|
+
6de5aa00 T _ruby_xrealloc
|
1107
1108
|
6de664b0 b _s_mbstate.15246
|
1108
1109
|
6de6610c b _seek_cur
|
1109
1110
|
6de66110 b _seek_end
|
1110
1111
|
6de66108 b _seek_set
|
1111
|
-
|
1112
|
-
|
1113
|
-
|
1114
|
-
|
1115
|
-
|
1116
|
-
|
1117
|
-
|
1118
|
-
|
1119
|
-
|
1120
|
-
|
1121
|
-
|
1122
|
-
|
1123
|
-
|
1124
|
-
6de5fe90 T _strrchr
|
1112
|
+
6de53674 t _set_attribute
|
1113
|
+
6de4234c t _set_backtrace
|
1114
|
+
6de4effc t _set_oci_number_from_num
|
1115
|
+
6de4d53c t _set_oci_number_from_str
|
1116
|
+
6de43b00 t _simple_logoff_execute
|
1117
|
+
6de43000 t _simple_logoff_prepare
|
1118
|
+
6de5fea0 T _sprintf
|
1119
|
+
6de51a00 t _sprintf
|
1120
|
+
6de5a7c8 t _sprintf
|
1121
|
+
6de42328 t _sprintf
|
1122
|
+
6de4cb5c t _sprintf
|
1123
|
+
6de5fef4 T _strlen
|
1124
|
+
6de5fe78 T _strrchr
|
1125
1125
|
6de660e8 b _sym_char
|
1126
1126
|
6de660e0 b _sym_length
|
1127
1127
|
6de660e4 b _sym_length_semantics
|
1128
1128
|
6de660ec b _sym_nchar
|
1129
|
-
|
1130
|
-
|
1129
|
+
6de5fe88 T _time
|
1130
|
+
6de5feb8 T _vfprintf
|
1131
1131
|
6de66440 b _was_init.31087
|
1132
|
-
|
1133
|
-
|
1134
|
-
|
1132
|
+
6de5eb30 T _wcrtomb
|
1133
|
+
6de5fefc T _wcslen
|
1134
|
+
6de5ea40 T _wcsrtombs
|