ruby-oci8 2.2.6.1-x64-mingw32 → 2.2.10-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/ChangeLog +167 -3
- data/NEWS +162 -54
- data/README.md +1 -1
- data/dist-files +1 -2
- data/docs/install-instant-client.md +2 -1
- data/docs/install-on-osx.md +29 -116
- data/lib/oci8/bindtype.rb +0 -14
- data/lib/oci8/check_load_error.rb +51 -16
- data/lib/oci8/cursor.rb +46 -13
- data/lib/oci8/oci8.rb +1 -1
- data/lib/oci8/version.rb +1 -1
- data/lib/oci8.rb +9 -4
- data/lib/oci8lib_250.so +0 -0
- data/lib/oci8lib_260.so +0 -0
- data/lib/oci8lib_270.so +0 -0
- data/lib/oci8lib_300.so +0 -0
- data/lib/oci8lib_310.so +0 -0
- data/ruby-oci8.gemspec +2 -3
- data/setup.rb +11 -2
- data/test/README.md +37 -0
- data/test/config.rb +1 -1
- data/test/test_break.rb +9 -9
- data/test/test_datetime.rb +8 -3
- data/test/test_oci8.rb +154 -43
- data/test/test_oranumber.rb +7 -1
- metadata +24 -25
- data/docs/osx-install-dev-tools.png +0 -0
- data/lib/oci8lib_200.so +0 -0
- data/lib/oci8lib_210.so +0 -0
- data/lib/oci8lib_220.so +0 -0
- data/lib/oci8lib_230.so +0 -0
- data/lib/oci8lib_240.so +0 -0
- data/test/README +0 -42
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 6f11569d15e1ba223253c3f09526fdf46656fad7847458251742f2ffedd19345
|
4
|
+
data.tar.gz: 01d23af2e740fe184cb426fd05b766d4f242424d9f542141b6e8b45e90fa2804
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d5ec81bde001125408d01e6986adf816a6ccfccc2992b670d5e9fc9bfe835a1e64382494fe5b60422e897f665807da6fe6cdc56e0a86225bfdf1a4b33cc67a38
|
7
|
+
data.tar.gz: daf5468076cbbf3ba1aeaff11c8ea2b0a5b1f2c6e6003ed74f44e2cb5f2f2a42f7a3c0123f4008b1c70da0112874091607db9b2350f048d4a4c9c607fa74a783
|
data/ChangeLog
CHANGED
@@ -1,11 +1,175 @@
|
|
1
|
-
|
2
|
-
* NEWS: Add changes between 2.2.
|
3
|
-
* lib/oci8/version.rb: Update to 2.2.
|
1
|
+
2020-12-30 Kubo Takehiro <kubo@jiubao.org>
|
2
|
+
* NEWS: Add changes between 2.2.8 and 2.2.9.
|
3
|
+
* lib/oci8/version.rb: Update to 2.2.9.
|
4
|
+
* mkpkg-win32.rb: remove unmaintained ruby versions from binary gems.
|
5
|
+
|
6
|
+
2020-12-29 Kubo Takehiro <kubo@jiubao.org>
|
7
|
+
* ext/oci8/oraconf.rb: Support --with-instant-client-dir along with --with-instant-client-lib/include.
|
8
|
+
(GH-223)
|
9
|
+
|
10
|
+
2020-12-29 Kubo Takehiro <kubo@jiubao.org>
|
11
|
+
* ext/oci8/hook_funcs.c: Fix hooking failure with truffleruby.
|
12
|
+
* test/test_break.rb: Fix to pass tests with truffleruby.
|
13
|
+
|
14
|
+
2020-12-28 Kubo Takehiro <kubo@jiubao.org>
|
15
|
+
* mkpkg-win32.rb: Build binary gems for ruby 3.0 on Windows.
|
16
|
+
|
17
|
+
2020-12-28 Kubo Takehiro <kubo@jiubao.org>
|
18
|
+
* ext/oci8/ocinumber.c: Suppress C compiler warning: enumeration value ‘RUBY_T_NONE’ not handled in switch
|
19
|
+
|
20
|
+
2020-09-10 Kubo Takehiro <kubo@jiubao.org>
|
21
|
+
* ext/oci8/extconf.rb: Fix for TruffleRuby 20.2 or before.
|
22
|
+
|
23
|
+
2020-09-08 Brandon Fish <brandon.j.fish@oracle.com>
|
24
|
+
* ext/oci8/extconf.rb, lib/oci8.rb: Handle truffleruby RUBY_ENGINE in case statements
|
25
|
+
|
26
|
+
2020-01-11 Kubo Takehiro <kubo@jiubao.org>
|
27
|
+
* NEWS: Add changes between 2.2.7 and 2.2.8.
|
28
|
+
* lib/oci8/version.rb: Update to 2.2.8.
|
29
|
+
|
30
|
+
2020-01-11 Kubo Takehiro <kubo@jiubao.org>
|
31
|
+
* ext/oci8/bind.c: Fix warning: comparison between signed and
|
32
|
+
unsigned integer expressions
|
33
|
+
|
34
|
+
2020-01-11 Kubo Takehiro <kubo@jiubao.org>
|
35
|
+
* test/README.md: Update preparation SQL statements for running tests.
|
36
|
+
|
37
|
+
2020-01-11 Kubo Takehiro <kubo@jiubao.org>
|
38
|
+
* test/test_break.rb: Check Oracle server OS where tests run
|
39
|
+
using dbms_utility.port_string. Tests in test_break.rb
|
40
|
+
failed on Windows.
|
41
|
+
|
42
|
+
2020-01-07 Kubo Takehiro <kubo@jiubao.org>
|
43
|
+
* mkpkg-win32.rb: Workarounds for compilation using ruby 2.4 and 2.6 with
|
44
|
+
latest msys2 to avoid 'undefined reference to __chk_fail'
|
45
|
+
|
46
|
+
2020-01-06 Kubo Takehiro <kubo@jiubao.org>
|
47
|
+
* ext/oci8/win32.c: Fix warnings caused by the change of rb_ensure()'s
|
48
|
+
arguments in ruby 2.7.
|
49
|
+
|
50
|
+
2019-12-16 Kubo Takehiro <kubo@jiubao.org>
|
51
|
+
* test/test_datetime.rb: Remove "require 'scanf'" to run tests with Ruby 2.7.
|
52
|
+
The 'scanf' library was removed. https://bugs.ruby-lang.org/issues/16170
|
53
|
+
|
54
|
+
2019-12-15 Kubo Takehiro <kubo@jiubao.org>
|
55
|
+
* ext/oci8/oradate.c: Fix bug of OraDate.now introduced 15 years ago.
|
56
|
+
|
57
|
+
2019-12-15 Kubo Takehiro <kubo@jiubao.org>
|
58
|
+
* ext/oci8/attr.c, ext/oci8/oci8lib.c: Fix warnings caused by the
|
59
|
+
change of rb_ensure()'s arguments in ruby 2.7.
|
60
|
+
|
61
|
+
2019-06-19 Kubo Takehiro <kubo@jiubao.org>
|
62
|
+
* Merge pull request #217 from nathanbwright/patch-1
|
63
|
+
Fix spelling in install-instant-client.md
|
64
|
+
(GH-217)
|
65
|
+
|
66
|
+
2019-06-18 Nathan Wright <nathanbwright@users.noreply.github.com>
|
67
|
+
* docs/install-instant-client.md: Fix spelling in install-instant-client.md
|
68
|
+
(GH-217)
|
69
|
+
|
70
|
+
2019-04-24 Kubo Takehiro <kubo@jiubao.org>
|
71
|
+
* Merge pull request #212 from tomasjura/master
|
72
|
+
Compilation fix for Windows ( and some small cleanups )
|
73
|
+
(GH-212)
|
74
|
+
|
75
|
+
2019-04-23 Tomas Jura <tomas.jura1@gmail.com>
|
76
|
+
* ext/oci8/oci8.h: eliminate compiler warning
|
77
|
+
(GH-212)
|
78
|
+
|
79
|
+
2019-04-20 Tomas Jura <tomas.jura1@gmail.com>
|
80
|
+
* ext/oci8/bind.c: compiler warning eliminated
|
81
|
+
(GH-212)
|
82
|
+
|
83
|
+
2019-04-20 Tomas Jura <tomas.jura1@gmail.com>
|
84
|
+
* setup.rb: use splat operator instead dummy variables
|
85
|
+
(GH-212)
|
86
|
+
|
87
|
+
2019-04-20 Tomas Jura <tomas.jura1@gmail.com>
|
88
|
+
* lib/oci8.rb: use fiddler instead obsolete Win32API
|
89
|
+
(GH-212)
|
90
|
+
|
91
|
+
2019-04-20 Tomas Jura <tomas.jura1@gmail.com>
|
92
|
+
* ext/oci8/oraconf.rb: fix typo in windows compilation
|
93
|
+
(GH-212)
|
94
|
+
|
95
|
+
2019-03-23 Kubo Takehiro <kubo@jiubao.org>
|
96
|
+
* Merge pull request #210 from dminuoso/allow-custom
|
97
|
+
(Nix) Allow for specifying include/library paths
|
98
|
+
(GH-210)
|
99
|
+
|
100
|
+
2019-03-23 Victor Nawothnig <Victor.Nawothnig@gmail.com>
|
101
|
+
* ext/oci8/oraconf.rb: Fix missing support for full client
|
102
|
+
(GH-210)
|
103
|
+
|
104
|
+
2019-03-22 Victor Nawothnig <Victor.Nawothnig@gmail.com>
|
105
|
+
* ext/oci8/oraconf.rb: fixup! Allow overriding library/include paths
|
106
|
+
(GH-210)
|
107
|
+
|
108
|
+
2019-03-21 Victor Nawothnig <Victor.Nawothnig@gmail.com>
|
109
|
+
* setup.rb: Add documentation for new flags
|
110
|
+
(GH-210)
|
111
|
+
|
112
|
+
2019-03-21 Victor Nawothnig <Victor.Nawothnig@gmail.com>
|
113
|
+
* ext/oci8/oraconf.rb: Allow overriding library/include paths
|
114
|
+
(GH-210)
|
115
|
+
|
116
|
+
2019-01-06 Kubo Takehiro <kubo@jiubao.org>
|
117
|
+
* NEWS: Add changes between 2.2.6.1 and 2.2.7.
|
118
|
+
* lib/oci8/version.rb: Update to 2.2.7
|
119
|
+
|
120
|
+
2019-01-06 Kubo Takehiro <kubo@jiubao.org>
|
121
|
+
* mkpkg-win32.rb, ruby-oci8.gemspec: Build binary gems for ruby 2.6
|
122
|
+
on Windows.
|
123
|
+
|
124
|
+
2019-01-06 Kubo Takehiro <kubo@jiubao.org>
|
125
|
+
* ext/oci8/oci8.c: Updata doc comments for OCI8#long_read_len
|
126
|
+
and OCI8#long_read_len=. These are deprecated.
|
127
|
+
|
128
|
+
2019-01-03 Kubo Takehiro <kubo@jiubao.org>
|
129
|
+
* lib/oci8/check_load_error.rb: Use fiddle instead of Win32API
|
130
|
+
to call WIN32 functions.
|
131
|
+
|
132
|
+
2019-01-03 Kubo Takehiro <kubo@jiubao.org>
|
133
|
+
* lib/oci8/check_load_error.rb: Add more error diagnostics
|
134
|
+
when 'require "oci8"' fails with "OCI.DLL: 126(The specified
|
135
|
+
module could not be found.)".
|
136
|
+
|
137
|
+
2019-01-03 Kubo Takehiro <kubo@jiubao.org>
|
138
|
+
* lib/oci8.rb, lib/oci8/check_load_error.rb: Exclude empty
|
139
|
+
parts of PATH on Windows.
|
140
|
+
|
141
|
+
2018-12-23 Kubo Takehiro <kubo@jiubao.org>
|
142
|
+
* lib/oci8/check_load_error.rb: Check OCI.DLL archtecture
|
143
|
+
when load error. It worked for ruby installer but not
|
144
|
+
for ruby installer2.
|
145
|
+
|
146
|
+
2018-12-23 Kubo Takehiro <kubo@jiubao.org>
|
147
|
+
* docs/install-instant-client.md: Add information about
|
148
|
+
the MSVC redistributable package required by Oracle 18.3 client.
|
4
149
|
|
5
150
|
2018-09-16 Kubo Takehiro <kubo@jiubao.org>
|
6
151
|
* ext/oci8/hook_funcs.c: Fix "No shared library is found to hook." on macOS.
|
7
152
|
(oracle-enhanced issue #1768)
|
8
153
|
|
154
|
+
2018-09-11 Kubo Takehiro <kubo@jiubao.org>
|
155
|
+
* ext/oci8/object.c, lib/oci8/cursor.rb: Change the internal structure
|
156
|
+
about object type binding to use array fetching for object types.
|
157
|
+
|
158
|
+
2018-09-09 Kubo Takehiro <kubo@jiubao.org>
|
159
|
+
* ext/oci8/lob.c: Read lob data without checking readable size to
|
160
|
+
reduce number of network round trips from two to one.
|
161
|
+
|
162
|
+
2018-09-05 Kubo Takehiro <kubo@jiubao.org>
|
163
|
+
* ext/oci8/bind.c, ext/oci8/stmt.c, lib/oci8/cursor.rb,
|
164
|
+
lib/oci8/oci8.rb, test/test_oci8.rb: Use array fetching when
|
165
|
+
LOB colums are in a query and no object types are in the query.
|
166
|
+
|
167
|
+
2018-09-02 Kubo Takehiro <kubo@jiubao.org>
|
168
|
+
* ext/oci8/apiwrap.yml, ext/oci8/bind.c, ext/oci8/stmt.c,
|
169
|
+
lib/oci8/bindtype.rb, test/test_oci8.rb: Rewrite OCI8::BindType::Long
|
170
|
+
and OCI8::BindType::LongRaw to handle up to 2 gigabyte data using
|
171
|
+
dynamically allocated buffers.
|
172
|
+
|
9
173
|
2018-08-22 Kubo Takehiro <kubo@jiubao.org>
|
10
174
|
* NEWS: Add changes between 2.2.5.1 and 2.2.6
|
11
175
|
* lib/oci8/version.rb: Update to 2.2.6
|
data/NEWS
CHANGED
@@ -1,15 +1,123 @@
|
|
1
1
|
# @markup markdown
|
2
2
|
|
3
|
-
2.2.
|
4
|
-
|
3
|
+
2.2.10 (2022-01-12)
|
4
|
+
===================
|
5
|
+
|
6
|
+
- Use `File.exist?` instead of removed `File.exists?` in Ruby 3.2 (GH-242)
|
7
|
+
|
8
|
+
(contributed by Yasuo Honda)
|
9
|
+
|
10
|
+
- Support ruby 3.1 distributed by rubyinstaller.org
|
11
|
+
|
12
|
+
- Remove code for obsolete platforms
|
13
|
+
- Ruby compiled by Borland C++
|
14
|
+
- macOS released several years ago
|
15
|
+
|
16
|
+
- Detect arm64 macOS shared library in oraconf.rb in preparation for Instant Client for Apple Silicon release.
|
17
|
+
|
18
|
+
2.2.9 (2020-12-30)
|
19
|
+
==================
|
20
|
+
|
21
|
+
- Support [TruffleRuby](https://github.com/oracle/truffleruby). (GH-225)
|
22
|
+
|
23
|
+
(contributed by Brandon Fish)
|
24
|
+
|
25
|
+
- Remove extension libraries for unmaintained ruby versions from binary gems.
|
26
|
+
|
27
|
+
Fixed issue
|
28
|
+
-----------
|
29
|
+
|
30
|
+
- Allow --with-instant-client-dir along with --with-instant-client-lib/include. (GH-223)
|
31
|
+
|
32
|
+
(reported by Victor Nawothnig)
|
33
|
+
|
34
|
+
2.2.8 (2020-01-11)
|
35
|
+
==================
|
36
|
+
|
37
|
+
New features
|
38
|
+
------------
|
39
|
+
|
40
|
+
* Add support to specify include and lib directories of Oracle library on installation. (GH-210)
|
41
|
+
|
42
|
+
The following three flags are added.
|
43
|
+
|
44
|
+
* --with-instant-client-dir
|
45
|
+
* --with-instant-client-include
|
46
|
+
* --with-instant-client-lib
|
47
|
+
|
48
|
+
Fixed issue
|
49
|
+
-----------
|
50
|
+
|
51
|
+
- Suppress warnings compiling oci8lib.so (GH-212 and others)
|
52
|
+
|
53
|
+
- Fix compilation and tests on Windows.
|
54
|
+
|
55
|
+
- Fix spelling in install-instant-client.md (GH-217)
|
56
|
+
|
57
|
+
- Use fiddler instead obsolete Win32API on Windows (GH-212)
|
58
|
+
|
59
|
+
2.2.7 (2019-01-06)
|
60
|
+
==================
|
61
|
+
|
62
|
+
Incompatible Changes
|
63
|
+
--------------------
|
64
|
+
|
65
|
+
### `OCI8#long_read_len` and `OCI8#long_read_len=` do nothing.
|
66
|
+
|
67
|
+
When `LONG`, `LONG RAW` or `XMLTYPE` data were fetched, the data were
|
68
|
+
truncated at `OCI8#long_read_len`. The maximum size of data had
|
69
|
+
been 4 gigabytes since this release.
|
70
|
+
|
71
|
+
`OCI8#long_read_len` and `OCI8#long_read_len=` remain for code-compatibility
|
72
|
+
but do nothing.
|
73
|
+
|
74
|
+
Improvement
|
75
|
+
-----------
|
76
|
+
|
77
|
+
### The number of network round trips was reduced when LOB data are read.
|
78
|
+
|
79
|
+
When LOB data are read, ruby-oci8 before 2.2.7 does the followings:
|
80
|
+
|
81
|
+
1. Gets the size of the LOB.
|
82
|
+
2. Allocate buffer to hold the data.
|
83
|
+
3. Read the LOB contents.
|
84
|
+
|
85
|
+
This requires two round trips.
|
86
|
+
|
87
|
+
It now does the followings:
|
88
|
+
|
89
|
+
1. Request the server to get LOB contents up to 4 gigabytes.
|
90
|
+
2. Read the LOB contents and allocate buffer when the size is insufficient.
|
91
|
+
3. If the total length of received data is less than 4 gigabytes, all data
|
92
|
+
are read. If not, go to the first step to read next 4 gigabytes.
|
93
|
+
|
94
|
+
This requires only one round trip if the size is less than 4 gigabytes.
|
95
|
+
|
96
|
+
### Use array fetching instead of prefetching when LOB columns are in queries
|
97
|
+
|
98
|
+
When LOB columns are in queries, prefetching doesn't seem to work. Rows
|
99
|
+
are fetched one by one according to data captured by network packet sniffer.
|
100
|
+
So array fetching is used instead of prefetching to reduce the number of
|
101
|
+
network round trips.
|
102
|
+
|
103
|
+
### Add error diagnostics when `'require "oci8"'` fails on Windows.
|
104
|
+
|
105
|
+
When `'require "oci8"'` fails with "OCI.DLL: 126(The specified module could not be found.)"
|
106
|
+
on Windows, the cause is not always that OCI.DLL is not found. It may
|
107
|
+
be incorrect architecture, missing dependent DLLs and so on.
|
108
|
+
Ruby-oci8 checks PATH and DLL files when the error is raised and change
|
109
|
+
the error message to reasonable one as possible.
|
110
|
+
|
111
|
+
2.2.6.1 (2018-09-16)
|
112
|
+
====================
|
5
113
|
|
6
114
|
Fixed issue
|
7
115
|
-----------
|
8
116
|
Fix "No shared library is found to hook." on macOS.
|
9
117
|
(rsim/oracle-enhanced#1768)
|
10
118
|
|
11
|
-
2.2.6
|
12
|
-
|
119
|
+
2.2.6 (2018-08-22)
|
120
|
+
==================
|
13
121
|
|
14
122
|
This release fixed issues about Oracle 18c except one.
|
15
123
|
|
@@ -47,8 +155,8 @@ communication channel."
|
|
47
155
|
|
48
156
|
(github issue #185)
|
49
157
|
|
50
|
-
2.2.5.1
|
51
|
-
|
158
|
+
2.2.5.1 (2017-12-27)
|
159
|
+
====================
|
52
160
|
|
53
161
|
No updates except tests. The version number was changed just to release
|
54
162
|
binary gems for ruby 2.5 on Windows.
|
@@ -57,8 +165,8 @@ binary gems for ruby 2.5 on Windows.
|
|
57
165
|
|
58
166
|
(github issue #180, #181)
|
59
167
|
|
60
|
-
2.2.5
|
61
|
-
|
168
|
+
2.2.5 (2017-10-21)
|
169
|
+
==================
|
62
170
|
|
63
171
|
New Features
|
64
172
|
------------
|
@@ -115,8 +223,8 @@ Other Changes
|
|
115
223
|
See {file:docs/number-type-mapping.md Number Type Mapping between Oracle and Ruby}.
|
116
224
|
(github issue #173)
|
117
225
|
|
118
|
-
2.2.4.1
|
119
|
-
|
226
|
+
2.2.4.1 (2017-06-17)
|
227
|
+
====================
|
120
228
|
|
121
229
|
Fixed issue
|
122
230
|
-----------
|
@@ -130,8 +238,8 @@ differently, it may cause unexpected behavior.
|
|
130
238
|
|
131
239
|
### Fix compilation errors in 2.2.4 on cygwin
|
132
240
|
|
133
|
-
2.2.4
|
134
|
-
|
241
|
+
2.2.4 (2017-06-11)
|
242
|
+
==================
|
135
243
|
|
136
244
|
New Features
|
137
245
|
------------
|
@@ -169,8 +277,8 @@ Use Win32::Registry instead of Win32API to compile ruby-oci8 on the latest cygwi
|
|
169
277
|
|
170
278
|
(contributed by davidbrs. [github issue #156](https://github.com/kubo/ruby-oci8/issues/156))
|
171
279
|
|
172
|
-
2.2.3
|
173
|
-
|
280
|
+
2.2.3 (2016-12-27)
|
281
|
+
==================
|
174
282
|
|
175
283
|
New Features
|
176
284
|
------------
|
@@ -183,8 +291,8 @@ New Features
|
|
183
291
|
- Suppress warnings outputted by Minitest in ruby 2.4.0
|
184
292
|
- Suppress warnings when compiling with ruby 2.4.0
|
185
293
|
|
186
|
-
2.2.2
|
187
|
-
|
294
|
+
2.2.2 (2016-04-24)
|
295
|
+
==================
|
188
296
|
|
189
297
|
New Features
|
190
298
|
------------
|
@@ -230,8 +338,8 @@ Other Changes
|
|
230
338
|
- Check the default value of DYLD_FALLBACK_LIBRARY_PATH after checking OCI_DIR on installation. (OS X only)
|
231
339
|
|
232
340
|
|
233
|
-
2.2.1
|
234
|
-
|
341
|
+
2.2.1 (2015-11-01)
|
342
|
+
==================
|
235
343
|
|
236
344
|
New Features
|
237
345
|
------------
|
@@ -259,16 +367,16 @@ Other Changes
|
|
259
367
|
|
260
368
|
- Delete unused code which was added to support old Oracle and ruby 1.8.
|
261
369
|
|
262
|
-
2.2.0.2
|
263
|
-
|
370
|
+
2.2.0.2 (2015-10-12)
|
371
|
+
====================
|
264
372
|
|
265
373
|
Nothing was changed except the version.
|
266
374
|
|
267
375
|
The forth version was incremented to release binary gems for mingw32.
|
268
376
|
The binary gems for 2.2.0.1 didn't work by faultily packaging.
|
269
377
|
|
270
|
-
2.2.0.1
|
271
|
-
|
378
|
+
2.2.0.1 (2015-10-11)
|
379
|
+
====================
|
272
380
|
|
273
381
|
If ruby-oci8 2.2.0 is installed, you have no need to update it to
|
274
382
|
2.2.0.1. Source code itself was not changed between 2.2.0 and 2.2.0.1.
|
@@ -284,8 +392,8 @@ Ruby-oci8 2.2.0 documents had not been generated in rubydoc.info
|
|
284
392
|
though the URLs are displayed on installation failure. They were
|
285
393
|
changed to documents generated by the latest github repository.
|
286
394
|
|
287
|
-
2.2.0
|
288
|
-
|
395
|
+
2.2.0 (2015-10-04)
|
396
|
+
==================
|
289
397
|
|
290
398
|
### Drop ruby 1.8 support
|
291
399
|
|
@@ -326,8 +434,8 @@ Other Changes
|
|
326
434
|
- Add OCI8.charset_name2id and OCI8.charset_id2name.
|
327
435
|
Mark OCI8#charset_name2id and OCI8#charset_id2name as deprecated.
|
328
436
|
|
329
|
-
2.1.8
|
330
|
-
|
437
|
+
2.1.8 (2015-04-04)
|
438
|
+
==================
|
331
439
|
|
332
440
|
New Features
|
333
441
|
------------
|
@@ -387,8 +495,8 @@ Fixed Issues
|
|
387
495
|
- Don't use SYM2ID on ruby 2.2.0 or later not to make symbols unGCable
|
388
496
|
by [Symbol GC](http://www.infoq.com/news/2014/12/ruby-2.2.0-released).
|
389
497
|
|
390
|
-
2.1.7
|
391
|
-
|
498
|
+
2.1.7 (2014-02-02)
|
499
|
+
==================
|
392
500
|
|
393
501
|
New Features
|
394
502
|
------------
|
@@ -400,8 +508,8 @@ Fixed Issues
|
|
400
508
|
|
401
509
|
- Fix OCI8#describe_table to follow synonyms in a remote database.
|
402
510
|
|
403
|
-
2.1.6
|
404
|
-
|
511
|
+
2.1.6 (2013-12-29)
|
512
|
+
==================
|
405
513
|
|
406
514
|
New Features
|
407
515
|
------------
|
@@ -441,8 +549,8 @@ Fixed Issues
|
|
441
549
|
- fix SEGV when one connection is used by more than two threads and temporary
|
442
550
|
lobs are freed by GC.
|
443
551
|
|
444
|
-
2.1.5
|
445
|
-
|
552
|
+
2.1.5 (2013-03-09)
|
553
|
+
==================
|
446
554
|
|
447
555
|
New Features
|
448
556
|
------------
|
@@ -462,8 +570,8 @@ Fixed Issues
|
|
462
570
|
instant client is 11.2.0.3 for Solaris x86 32-bit, the ruby
|
463
571
|
version is 1.9.3 or upper and the ruby is compiled by gcc.
|
464
572
|
|
465
|
-
2.1.4
|
466
|
-
|
573
|
+
2.1.4 (2013-01-06)
|
574
|
+
==================
|
467
575
|
|
468
576
|
New Features
|
469
577
|
------------
|
@@ -503,8 +611,8 @@ Fixed Issues
|
|
503
611
|
|
504
612
|
(reported by Brian Henderson)
|
505
613
|
|
506
|
-
2.1.3
|
507
|
-
|
614
|
+
2.1.3 (2012-11-11)
|
615
|
+
==================
|
508
616
|
|
509
617
|
New Features
|
510
618
|
------------
|
@@ -561,8 +669,8 @@ Fixed Issues
|
|
561
669
|
- Fix #<NoMethodError: undefined method `timezone' for Time:Class>
|
562
670
|
when ruby is less than 1.9.2 and an object type's time attribute is accessed.
|
563
671
|
|
564
|
-
2.1.2
|
565
|
-
|
672
|
+
2.1.2 (2012-04-28)
|
673
|
+
==================
|
566
674
|
|
567
675
|
Specification changes
|
568
676
|
---------------------
|
@@ -583,8 +691,8 @@ Fixed Issues
|
|
583
691
|
|
584
692
|
(reported by Yasuo Honda)
|
585
693
|
|
586
|
-
2.1.1
|
587
|
-
|
694
|
+
2.1.1 (2012-04-22)
|
695
|
+
==================
|
588
696
|
|
589
697
|
New Features
|
590
698
|
------------
|
@@ -631,8 +739,8 @@ Fixed Issues
|
|
631
739
|
|
632
740
|
(repored by Leoš Bitto)
|
633
741
|
|
634
|
-
2.1.0
|
635
|
-
|
742
|
+
2.1.0 (2011-12-13)
|
743
|
+
==================
|
636
744
|
|
637
745
|
New Features
|
638
746
|
------------
|
@@ -747,8 +855,8 @@ Fixed Issues
|
|
747
855
|
|
748
856
|
(reported by jbirdjavi)
|
749
857
|
|
750
|
-
2.0.6
|
751
|
-
|
858
|
+
2.0.6 (2011-06-14)
|
859
|
+
==================
|
752
860
|
|
753
861
|
Fixed issues
|
754
862
|
------------
|
@@ -759,8 +867,8 @@ Fixed issues
|
|
759
867
|
a closed OCI handle's method is called. It was chaned in 2.0.5
|
760
868
|
by mistake.
|
761
869
|
|
762
|
-
2.0.5
|
763
|
-
|
870
|
+
2.0.5 (2011-06-12)
|
871
|
+
==================
|
764
872
|
|
765
873
|
New Features
|
766
874
|
------------
|
@@ -848,8 +956,8 @@ Fixed issues
|
|
848
956
|
|
849
957
|
(reported by Sebastian YEPES)
|
850
958
|
|
851
|
-
2.0.4
|
852
|
-
|
959
|
+
2.0.4 (2010-02-28)
|
960
|
+
==================
|
853
961
|
|
854
962
|
New Features
|
855
963
|
------------
|
@@ -910,8 +1018,8 @@ Fixed issues
|
|
910
1018
|
|
911
1019
|
(reported by Raimonds Simanovskis)
|
912
1020
|
|
913
|
-
2.0.3
|
914
|
-
|
1021
|
+
2.0.3 (2009-10-21)
|
1022
|
+
==================
|
915
1023
|
|
916
1024
|
Incompatible Changes
|
917
1025
|
--------------------
|
@@ -1051,8 +1159,8 @@ Fixed installation issues
|
|
1051
1159
|
|
1052
1160
|
(reported by Kazuya Teramoto)
|
1053
1161
|
|
1054
|
-
2.0.2
|
1055
|
-
|
1162
|
+
2.0.2 (2009-05-17)
|
1163
|
+
==================
|
1056
1164
|
|
1057
1165
|
* add new methods
|
1058
1166
|
- {OCI8#select_one}
|
@@ -1092,8 +1200,8 @@ Fixed installation issues
|
|
1092
1200
|
* [ruby 1.9] fix to bind string data by the length got from String#bytesize
|
1093
1201
|
converted to {OCI8.encoding}, not by String#size.
|
1094
1202
|
|
1095
|
-
2.0.1
|
1096
|
-
|
1203
|
+
2.0.1 (2009-03-17)
|
1204
|
+
==================
|
1097
1205
|
|
1098
1206
|
* release a binary gem for Windows, which contains libraries for both
|
1099
1207
|
ruby 1.8 and ruby 1.9.1.
|
data/README.md
CHANGED
@@ -2,7 +2,7 @@ Ruby-oci8
|
|
2
2
|
=========
|
3
3
|
|
4
4
|
[![Gem Version](https://badge.fury.io/rb/ruby-oci8.svg)](http://badge.fury.io/rb/ruby-oci8)
|
5
|
-
[![
|
5
|
+
[![Tests](https://github.com/kubo/ruby-oci8/actions/workflows/tests.yml/badge.svg)](https://github.com/kubo/ruby-oci8/actions/workflows/tests.yml)
|
6
6
|
|
7
7
|
What is ruby-oci8
|
8
8
|
-----------------
|
data/dist-files
CHANGED
@@ -19,7 +19,6 @@ docs/install-instant-client.md
|
|
19
19
|
docs/install-on-osx.md
|
20
20
|
docs/ldap-auth-and-function-interposition.md
|
21
21
|
docs/number-type-mapping.md
|
22
|
-
docs/osx-install-dev-tools.png
|
23
22
|
docs/platform-specific-issues.md
|
24
23
|
docs/report-installation-issue.md
|
25
24
|
docs/timeout-parameters.md
|
@@ -80,7 +79,7 @@ lib/oci8/oracle_version.rb
|
|
80
79
|
lib/oci8/properties.rb
|
81
80
|
lib/oci8/version.rb
|
82
81
|
lib/ruby-oci8.rb
|
83
|
-
test/README
|
82
|
+
test/README.md
|
84
83
|
test/config.rb
|
85
84
|
test/setup_test_object.sql
|
86
85
|
test/setup_test_package.sql
|
@@ -18,7 +18,7 @@ Look at {file:docs/install-on-osx.md} for OS X.
|
|
18
18
|
Install Oracle Instant Client Packages
|
19
19
|
--------------------------------------
|
20
20
|
|
21
|
-
###
|
21
|
+
### Download Instant Client Packages
|
22
22
|
|
23
23
|
Download the following packages from [Oracle Technology Network](http://www.oracle.com/technetwork/database/features/instant-client/index-097480.html).
|
24
24
|
|
@@ -110,6 +110,7 @@ Package" or copy a runtime library to the directory where `ruby.exe` resides.
|
|
110
110
|
|
111
111
|
| Oracle Version | Package | Runtime Library|
|
112
112
|
|---|---|---|
|
113
|
+
| 18.3 | [Microsoft Visual C++ 2013 Redistributable Package][2013] | MSVCR120.DLL |
|
113
114
|
| 12.2.0.x | [Microsoft Visual C++ 2013 Redistributable Package][2013] | MSVCR120.DLL |
|
114
115
|
| 12.1.0.x | [Microsoft Visual C++ 2010 Redistributable Package][2010] | MSVCR100.DLL |
|
115
116
|
| 11.2.0.x | Microsoft Visual C++ 2005 SP1 Redistributable Package ([x86][2005SP1_x86], [x64][2005SP1_x64]) | MSVCR80.DLL(The file version must be 8.0.50727.762.) |
|