ibm_db 2.5.11 → 2.5.12
Sign up to get free protection for your applications and to get access to all the features.
data/CHANGES
CHANGED
@@ -1,5 +1,8 @@
|
|
1
1
|
Change Log
|
2
2
|
==============
|
3
|
+
2014/01/28 (IBM_DB adapter 2.5.12, driver 2.5.11) :
|
4
|
+
- Supporting usage of name ibmdb as adapter along with current name ibm_db to support requirements of cloud environments
|
5
|
+
|
3
6
|
2012/12/07 (IBM_DB adapter 2.5.11, driver 2.5.11) :
|
4
7
|
- Fixed bug #29633 - Deletes cause too many handles to be consumed and not freed
|
5
8
|
- Support for Mac OS CLI library loading to check create and drop db functionality - #29625
|
data/README
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
=====================================================================
|
2
|
-
README for the IBM_DB Adapter (2.5.
|
2
|
+
README for the IBM_DB Adapter (2.5.12) and Driver (2.5.11) (2014/01/28)
|
3
3
|
For ActiveRecord Version >= 1.15.5 (and Rails >= 1.2.5)
|
4
4
|
=====================================================================
|
5
5
|
|
@@ -216,6 +216,11 @@ module ActiveRecord
|
|
216
216
|
raise "An unexpected error occured during connect attempt to [#{database}]"
|
217
217
|
end
|
218
218
|
end # method self.ibm_db_connection
|
219
|
+
|
220
|
+
def self.ibmdb_connection(config)
|
221
|
+
#Method to support alising of adapter name as ibmdb [without underscore]
|
222
|
+
self.ibm_db_connection(config)
|
223
|
+
end
|
219
224
|
end # class Base
|
220
225
|
|
221
226
|
module ConnectionAdapters
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: ibm_db
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 2.5.
|
5
|
+
version: 2.5.12
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- IBM
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date:
|
13
|
+
date: 2014-01-28 00:00:00 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: activerecord
|
@@ -35,6 +35,7 @@ extra_rdoc_files:
|
|
35
35
|
- MANIFEST
|
36
36
|
files:
|
37
37
|
- README
|
38
|
+
- lib/active_record/connection_adapters/ibmdb_adapter.rb
|
38
39
|
- lib/active_record/connection_adapters/ibm_db_adapter.rb
|
39
40
|
- lib/active_record/connection_adapters/ibm_db_pstmt.rb
|
40
41
|
- lib/active_record/vendor/db2-i5-zOS.yaml
|
@@ -99,7 +100,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
99
100
|
requirements:
|
100
101
|
- ActiveRecord, at least 1.15.1
|
101
102
|
rubyforge_project: rubyibm
|
102
|
-
rubygems_version: 1.8.
|
103
|
+
rubygems_version: 1.8.23
|
103
104
|
signing_key:
|
104
105
|
specification_version: 3
|
105
106
|
summary: "Rails Driver and Adapter for IBM Data Servers: {DB2 on Linux/Unix/Windows, DB2 on zOS, DB2 on i5/OS, Informix (IDS)}"
|