activerecord-jdbc-adapter 1.2.9 → 1.2.9.1
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +17 -13
- data/lib/arjdbc.rb +5 -1
- data/lib/arjdbc/version.rb +1 -1
- metadata +322 -329
data/History.txt
CHANGED
@@ -1,7 +1,11 @@
|
|
1
|
+
== 1.2.9.1 (07/19/13)
|
2
|
+
|
3
|
+
- warn when used with ActiveRecord 4.x
|
4
|
+
|
1
5
|
== 1.2.9 (03/20/13)
|
2
6
|
|
3
7
|
- [oracle] native database types ala oracle-enhanced adapter
|
4
|
-
- [oracle] fix #insert (broken since execute+to_sql refactoring) keeping binds
|
8
|
+
- [oracle] fix #insert (broken since execute+to_sql refactoring) keeping binds
|
5
9
|
respect 30 max identifier length with default sequence names
|
6
10
|
- [db2] add as400 primary key support and re-add explain method
|
7
11
|
- [mssql] fix table/column name quoting - do not quote if quoted already
|
@@ -30,15 +34,15 @@
|
|
30
34
|
avoid (deprecated) Java.java_to_ruby when wrapping java.sql.Connection
|
31
35
|
- follow Column-naming convention in MySQL adapter ArJdbc module
|
32
36
|
- make sure update_sql is public in mysql adapter (Rails compatibility)
|
33
|
-
- fix 1.2.6 regression - incorrectly setup to_sql method based on Rails version
|
37
|
+
- fix 1.2.6 regression - incorrectly setup to_sql method based on Rails version
|
34
38
|
this caused double '?' bind substitution issues (#322)
|
35
39
|
|
36
40
|
== 1.2.6 (01/31/13)
|
37
41
|
|
38
42
|
- [postgres] only set --schema (to search path) for pg_dump if configured (#315)
|
39
43
|
- [oracle] id limits + quoting; current user/db/schema + savepoint support
|
40
|
-
- execute "log" (sql) name correctly based on AR version
|
41
|
-
- deprecate substitute_binds and extract_sql
|
44
|
+
- execute "log" (sql) name correctly based on AR version
|
45
|
+
- deprecate substitute_binds and extract_sql
|
42
46
|
- [derby] make sure we never modify the passed sql param
|
43
47
|
- [sqlite3] execute on insert_sql + savepoint support
|
44
48
|
- [mssql] [firebird] [informix] (shared) serialized attribute support
|
@@ -47,17 +51,17 @@
|
|
47
51
|
- renamed Sqlite3RubyJdbcConnection to SQLite3RubyJdbcConnection
|
48
52
|
- [mysql] re-define remove_index! for "better" AR-2.3 compatibility
|
49
53
|
- [derby] avoid failures with #quote when second arg nil + keep string encoding
|
50
|
-
- [db2] binary support & improved quoting +
|
54
|
+
- [db2] binary support & improved quoting +
|
51
55
|
use lob callback for all since it was failing on BLOB/CLOB inserts otherwise
|
52
56
|
- [db2] better (simplified) type handling for DB2
|
53
57
|
- JRuby 1.6.8 compatibility when rescue-ing Java exception
|
54
58
|
- [mysql] avoid encoding issues with MySQL's quoting methods (#185)
|
55
59
|
- [postgres] ignore binary precision / limit for bytea
|
56
60
|
- [oracle] explain (query) support
|
57
|
-
- [oracle] since Oracle supports TIMESTAMP for quite a while we should not
|
61
|
+
- [oracle] since Oracle supports TIMESTAMP for quite a while we should not
|
58
62
|
create DATE columns for a :timestamp column type
|
59
63
|
- [oracle] avoid CREATE DDL failure when BLOB has length specified
|
60
|
-
- [jdbc-] review autoloading backwards-incompatible change in jdbc- gems
|
64
|
+
- [jdbc-] review autoloading backwards-incompatible change in jdbc- gems
|
61
65
|
auto-load (backwards-compat) can be enabled back using jdbc.driver.autoload
|
62
66
|
system property or using the driver specific autoload option as well
|
63
67
|
- [jdbc-] Update version handling introduce DRIVER_VERSION constant
|
@@ -72,7 +76,7 @@
|
|
72
76
|
- [sqlite3] SQLite3 explain support (Rails style)
|
73
77
|
- [postgres] (re-usable) explain support for PostgreSQL (based on Rails)
|
74
78
|
- [h2] update handling of time fields on H2/HSQLDB (#252)
|
75
|
-
- rescue (and wrap) only SQLExceptions from driver.connect this caused
|
79
|
+
- rescue (and wrap) only SQLExceptions from driver.connect this caused
|
76
80
|
swallowing of runtime exceptions from JDBC drivers
|
77
81
|
- support for setting (custom) jdbc driver properties in config
|
78
82
|
- when a new adapter (constant) gets loaded column types should pick it up
|
@@ -83,7 +87,7 @@
|
|
83
87
|
== 1.2.5 (01/02/13)
|
84
88
|
|
85
89
|
- backwards compat with older jdbc- (driver) gems (#279)
|
86
|
-
- no need to set the :driver for jndi config (did not work anyways) when jdbc is being
|
90
|
+
- no need to set the :driver for jndi config (did not work anyways) when jdbc is being
|
87
91
|
configured + do not raise if there's a :driver_instance setup instead of the :driver
|
88
92
|
- support extra options with recreate_database (for postgres)
|
89
93
|
- [jdbc-derby] update Derby to 10.8.2.2
|
@@ -92,13 +96,13 @@
|
|
92
96
|
- [sqlite3] updated sqlite3 binary handling
|
93
97
|
- [jdbc-jtds] upgrade to jtds (driver) 1.3.0
|
94
98
|
- JDBC driver names should be on one (re-usable) place
|
95
|
-
- make sure that (jdbc-xxx gem) .jars are only loaded (required) when first connection
|
99
|
+
- make sure that (jdbc-xxx gem) .jars are only loaded (required) when first connection
|
96
100
|
is attempted (this avoids e.g. sqlite-jdbc.jar being always among loaded features)
|
97
101
|
- jdbc-* gems should expose the driver_jar instead of (auto) loading it
|
98
102
|
- [oracle] adding in_clause_limit override to properly handle Oracle's 1000 entry limit
|
99
103
|
- [jdbc-mysql] upgrade to mysql connector 5.1.22
|
100
104
|
- [jdbc-postgres] upgade to postgresql-9.2 jar version 9.2-1002
|
101
|
-
- [postgres] fix standard_conforming_strings's default not being set and
|
105
|
+
- [postgres] fix standard_conforming_strings's default not being set and
|
102
106
|
backslash escaping to account for standard_conforming_strings
|
103
107
|
- [jdbc-postgres] upgrade to postgres.jar 9.1.903 driver
|
104
108
|
- [jdbc-h2] update h2.jar to 1.3.168
|
@@ -112,7 +116,7 @@
|
|
112
116
|
- [db2] add support for primary keys to structure_dump
|
113
117
|
- [db2] detect identity columns in db2 structure_dump
|
114
118
|
- [mysql] added support for Rails 3.2 explain feature (#159)
|
115
|
-
- add support for DB_STRUCTURE in db:structure:dump
|
119
|
+
- add support for DB_STRUCTURE in db:structure:dump
|
116
120
|
(and db:structure:load task) (#203)
|
117
121
|
- [postgres] rename sequence during table rename
|
118
122
|
- [db2] iseries returns date with two digit year - leave it as string
|
@@ -594,7 +598,7 @@
|
|
594
598
|
== 0.3
|
595
599
|
|
596
600
|
- Release coincides with JRuby 1.0.0RC1 release
|
597
|
-
- Improvements for Derby, Postgres, and Oracle, all of which are running
|
601
|
+
- Improvements for Derby, Postgres, and Oracle, all of which are running
|
598
602
|
> 95% of AR tests
|
599
603
|
|
600
604
|
== 0.2.4
|
data/lib/arjdbc.rb
CHANGED
@@ -11,7 +11,7 @@ if defined?(JRUBY_VERSION)
|
|
11
11
|
require 'active_record'
|
12
12
|
end
|
13
13
|
rescue LoadError => e
|
14
|
-
warn "activerecord-jdbc-adapter requires
|
14
|
+
warn "activerecord-jdbc-adapter requires gem 'activerecord' at runtime"
|
15
15
|
raise e
|
16
16
|
end
|
17
17
|
require 'arjdbc/jdbc'
|
@@ -20,3 +20,7 @@ else
|
|
20
20
|
end
|
21
21
|
|
22
22
|
require 'arjdbc/version'
|
23
|
+
if ActiveRecord::VERSION::MAJOR > 3
|
24
|
+
warn "activerecord-jdbc-adapter #{ArJdbc::Version::VERSION} only (officialy) " <<
|
25
|
+
"supports activerecord <= 3.2, please use gem 'activerecord-jdbc-adapter', '>= 1.3.0'"
|
26
|
+
end
|
data/lib/arjdbc/version.rb
CHANGED
metadata
CHANGED
@@ -1,351 +1,344 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: activerecord-jdbc-adapter
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
prerelease:
|
5
|
-
version: 1.2.9
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease:
|
5
|
+
version: 1.2.9.1
|
6
6
|
platform: ruby
|
7
|
-
authors:
|
8
|
-
|
9
|
-
autorequire:
|
7
|
+
authors:
|
8
|
+
- Nick Sieger, Ola Bini and JRuby contributors
|
9
|
+
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
|
13
|
-
date: 2013-03-20 00:00:00 Z
|
12
|
+
date: 2013-07-19 00:00:00.000000000 Z
|
14
13
|
dependencies: []
|
15
|
-
|
16
14
|
description: |-
|
17
15
|
activerecord-jdbc-adapter is a database adapter for Rails\' ActiveRecord
|
18
16
|
component that can be used with JRuby[http://www.jruby.org/]. It allows use of
|
19
17
|
virtually any JDBC-compliant database with your JRuby on Rails application.
|
20
18
|
email: nick@nicksieger.com, ola.bini@gmail.com
|
21
19
|
executables: []
|
22
|
-
|
23
20
|
extensions: []
|
24
|
-
|
25
21
|
extra_rdoc_files: []
|
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
|
-
|
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
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
- test/test_helper.rb
|
22
|
+
files:
|
23
|
+
- .gitignore
|
24
|
+
- .travis.yml
|
25
|
+
- Appraisals
|
26
|
+
- Gemfile
|
27
|
+
- Gemfile.lock
|
28
|
+
- History.txt
|
29
|
+
- LICENSE.txt
|
30
|
+
- README.md
|
31
|
+
- Rakefile
|
32
|
+
- activerecord-jdbc-adapter.gemspec
|
33
|
+
- bench/bench_attributes.rb
|
34
|
+
- bench/bench_attributes_new.rb
|
35
|
+
- bench/bench_create.rb
|
36
|
+
- bench/bench_find_all.rb
|
37
|
+
- bench/bench_find_all_mt.rb
|
38
|
+
- bench/bench_model.rb
|
39
|
+
- bench/bench_new.rb
|
40
|
+
- bench/bench_new_valid.rb
|
41
|
+
- bench/bench_valid.rb
|
42
|
+
- gemfiles/rails23.gemfile
|
43
|
+
- gemfiles/rails23.gemfile.lock
|
44
|
+
- gemfiles/rails30.gemfile
|
45
|
+
- gemfiles/rails30.gemfile.lock
|
46
|
+
- gemfiles/rails31.gemfile
|
47
|
+
- gemfiles/rails31.gemfile.lock
|
48
|
+
- gemfiles/rails32.gemfile
|
49
|
+
- gemfiles/rails32.gemfile.lock
|
50
|
+
- lib/active_record/connection_adapters/db2_adapter.rb
|
51
|
+
- lib/active_record/connection_adapters/derby_adapter.rb
|
52
|
+
- lib/active_record/connection_adapters/h2_adapter.rb
|
53
|
+
- lib/active_record/connection_adapters/hsqldb_adapter.rb
|
54
|
+
- lib/active_record/connection_adapters/informix_adapter.rb
|
55
|
+
- lib/active_record/connection_adapters/jdbc_adapter.rb
|
56
|
+
- lib/active_record/connection_adapters/jndi_adapter.rb
|
57
|
+
- lib/active_record/connection_adapters/mssql_adapter.rb
|
58
|
+
- lib/active_record/connection_adapters/mysql2_adapter.rb
|
59
|
+
- lib/active_record/connection_adapters/mysql_adapter.rb
|
60
|
+
- lib/active_record/connection_adapters/oracle_adapter.rb
|
61
|
+
- lib/active_record/connection_adapters/postgresql_adapter.rb
|
62
|
+
- lib/active_record/connection_adapters/sqlite3_adapter.rb
|
63
|
+
- lib/activerecord-jdbc-adapter.rb
|
64
|
+
- lib/arel/engines/sql/compilers/db2_compiler.rb
|
65
|
+
- lib/arel/engines/sql/compilers/derby_compiler.rb
|
66
|
+
- lib/arel/engines/sql/compilers/h2_compiler.rb
|
67
|
+
- lib/arel/engines/sql/compilers/hsqldb_compiler.rb
|
68
|
+
- lib/arel/engines/sql/compilers/jdbc_compiler.rb
|
69
|
+
- lib/arel/engines/sql/compilers/mssql_compiler.rb
|
70
|
+
- lib/arel/visitors/compat.rb
|
71
|
+
- lib/arel/visitors/db2.rb
|
72
|
+
- lib/arel/visitors/derby.rb
|
73
|
+
- lib/arel/visitors/firebird.rb
|
74
|
+
- lib/arel/visitors/hsqldb.rb
|
75
|
+
- lib/arel/visitors/sql_server.rb
|
76
|
+
- lib/arjdbc.rb
|
77
|
+
- lib/arjdbc/db2.rb
|
78
|
+
- lib/arjdbc/db2/adapter.rb
|
79
|
+
- lib/arjdbc/db2/connection_methods.rb
|
80
|
+
- lib/arjdbc/derby.rb
|
81
|
+
- lib/arjdbc/derby/active_record_patch.rb
|
82
|
+
- lib/arjdbc/derby/adapter.rb
|
83
|
+
- lib/arjdbc/derby/connection_methods.rb
|
84
|
+
- lib/arjdbc/discover.rb
|
85
|
+
- lib/arjdbc/firebird.rb
|
86
|
+
- lib/arjdbc/firebird/adapter.rb
|
87
|
+
- lib/arjdbc/h2.rb
|
88
|
+
- lib/arjdbc/h2/adapter.rb
|
89
|
+
- lib/arjdbc/h2/connection_methods.rb
|
90
|
+
- lib/arjdbc/hsqldb.rb
|
91
|
+
- lib/arjdbc/hsqldb/adapter.rb
|
92
|
+
- lib/arjdbc/hsqldb/connection_methods.rb
|
93
|
+
- lib/arjdbc/hsqldb/explain_support.rb
|
94
|
+
- lib/arjdbc/informix.rb
|
95
|
+
- lib/arjdbc/informix/adapter.rb
|
96
|
+
- lib/arjdbc/informix/connection_methods.rb
|
97
|
+
- lib/arjdbc/jdbc.rb
|
98
|
+
- lib/arjdbc/jdbc/adapter.rb
|
99
|
+
- lib/arjdbc/jdbc/adapter_java.jar
|
100
|
+
- lib/arjdbc/jdbc/base_ext.rb
|
101
|
+
- lib/arjdbc/jdbc/callbacks.rb
|
102
|
+
- lib/arjdbc/jdbc/column.rb
|
103
|
+
- lib/arjdbc/jdbc/compatibility.rb
|
104
|
+
- lib/arjdbc/jdbc/connection.rb
|
105
|
+
- lib/arjdbc/jdbc/connection_methods.rb
|
106
|
+
- lib/arjdbc/jdbc/core_ext.rb
|
107
|
+
- lib/arjdbc/jdbc/discover.rb
|
108
|
+
- lib/arjdbc/jdbc/driver.rb
|
109
|
+
- lib/arjdbc/jdbc/extension.rb
|
110
|
+
- lib/arjdbc/jdbc/java.rb
|
111
|
+
- lib/arjdbc/jdbc/jdbc.rake
|
112
|
+
- lib/arjdbc/jdbc/missing_functionality_helper.rb
|
113
|
+
- lib/arjdbc/jdbc/quoted_primary_key.rb
|
114
|
+
- lib/arjdbc/jdbc/railtie.rb
|
115
|
+
- lib/arjdbc/jdbc/rake_tasks.rb
|
116
|
+
- lib/arjdbc/jdbc/serialized_attributes_helper.rb
|
117
|
+
- lib/arjdbc/jdbc/type_converter.rb
|
118
|
+
- lib/arjdbc/mimer.rb
|
119
|
+
- lib/arjdbc/mimer/adapter.rb
|
120
|
+
- lib/arjdbc/mssql.rb
|
121
|
+
- lib/arjdbc/mssql/adapter.rb
|
122
|
+
- lib/arjdbc/mssql/connection_methods.rb
|
123
|
+
- lib/arjdbc/mssql/limit_helpers.rb
|
124
|
+
- lib/arjdbc/mssql/lock_helpers.rb
|
125
|
+
- lib/arjdbc/mssql/tsql_methods.rb
|
126
|
+
- lib/arjdbc/mssql/utils.rb
|
127
|
+
- lib/arjdbc/mysql.rb
|
128
|
+
- lib/arjdbc/mysql/adapter.rb
|
129
|
+
- lib/arjdbc/mysql/connection_methods.rb
|
130
|
+
- lib/arjdbc/mysql/explain_support.rb
|
131
|
+
- lib/arjdbc/oracle.rb
|
132
|
+
- lib/arjdbc/oracle/adapter.rb
|
133
|
+
- lib/arjdbc/oracle/connection_methods.rb
|
134
|
+
- lib/arjdbc/postgresql.rb
|
135
|
+
- lib/arjdbc/postgresql/adapter.rb
|
136
|
+
- lib/arjdbc/postgresql/connection_methods.rb
|
137
|
+
- lib/arjdbc/postgresql/explain_support.rb
|
138
|
+
- lib/arjdbc/sqlite3.rb
|
139
|
+
- lib/arjdbc/sqlite3/adapter.rb
|
140
|
+
- lib/arjdbc/sqlite3/connection_methods.rb
|
141
|
+
- lib/arjdbc/sqlite3/explain_support.rb
|
142
|
+
- lib/arjdbc/sybase.rb
|
143
|
+
- lib/arjdbc/sybase/adapter.rb
|
144
|
+
- lib/arjdbc/version.rb
|
145
|
+
- lib/generators/jdbc/USAGE
|
146
|
+
- lib/generators/jdbc/jdbc_generator.rb
|
147
|
+
- lib/jdbc_adapter.rb
|
148
|
+
- lib/jdbc_adapter/rake_tasks.rb
|
149
|
+
- lib/jdbc_adapter/version.rb
|
150
|
+
- lib/pg.rb
|
151
|
+
- pom.xml
|
152
|
+
- rails_generators/jdbc_generator.rb
|
153
|
+
- rails_generators/templates/config/initializers/jdbc.rb
|
154
|
+
- rails_generators/templates/lib/tasks/jdbc.rake
|
155
|
+
- rakelib/01-tomcat.rake
|
156
|
+
- rakelib/02-test.rake
|
157
|
+
- rakelib/bundler_ext.rb
|
158
|
+
- rakelib/compile.rake
|
159
|
+
- rakelib/db.rake
|
160
|
+
- rakelib/rails.rake
|
161
|
+
- src/java/arjdbc/db2/DB2Module.java
|
162
|
+
- src/java/arjdbc/db2/DB2RubyJdbcConnection.java
|
163
|
+
- src/java/arjdbc/derby/DerbyModule.java
|
164
|
+
- src/java/arjdbc/h2/H2RubyJdbcConnection.java
|
165
|
+
- src/java/arjdbc/hsqldb/HSQLDBModule.java
|
166
|
+
- src/java/arjdbc/informix/InformixRubyJdbcConnection.java
|
167
|
+
- src/java/arjdbc/jdbc/AdapterJavaService.java
|
168
|
+
- src/java/arjdbc/jdbc/JdbcConnectionFactory.java
|
169
|
+
- src/java/arjdbc/jdbc/RubyJdbcConnection.java
|
170
|
+
- src/java/arjdbc/jdbc/SQLBlock.java
|
171
|
+
- src/java/arjdbc/mssql/MSSQLModule.java
|
172
|
+
- src/java/arjdbc/mssql/MSSQLRubyJdbcConnection.java
|
173
|
+
- src/java/arjdbc/mssql/MssqlRubyJdbcConnection.java
|
174
|
+
- src/java/arjdbc/mysql/MySQLModule.java
|
175
|
+
- src/java/arjdbc/mysql/MySQLRubyJdbcConnection.java
|
176
|
+
- src/java/arjdbc/oracle/OracleModule.java
|
177
|
+
- src/java/arjdbc/oracle/OracleRubyJdbcConnection.java
|
178
|
+
- src/java/arjdbc/postgresql/PostgresqlRubyJdbcConnection.java
|
179
|
+
- src/java/arjdbc/sqlite3/SQLite3Module.java
|
180
|
+
- src/java/arjdbc/sqlite3/SQLite3RubyJdbcConnection.java
|
181
|
+
- src/java/arjdbc/sqlite3/Sqlite3RubyJdbcConnection.java
|
182
|
+
- src/java/arjdbc/util/QuotingUtils.java
|
183
|
+
- test/abstract_db_create.rb
|
184
|
+
- test/activerecord/connection_adapters/type_conversion_test.rb
|
185
|
+
- test/activerecord/connections/native_jdbc_mysql/connection.rb
|
186
|
+
- test/activerecord/jall.sh
|
187
|
+
- test/activerecord/jtest.sh
|
188
|
+
- test/assets/example.log
|
189
|
+
- test/assets/flowers.jpg
|
190
|
+
- test/assets/test.txt
|
191
|
+
- test/binary.rb
|
192
|
+
- test/db/db2.rb
|
193
|
+
- test/db/derby.rb
|
194
|
+
- test/db/h2.rb
|
195
|
+
- test/db/hsqldb.rb
|
196
|
+
- test/db/informix.rb
|
197
|
+
- test/db/jdbc.rb
|
198
|
+
- test/db/jdbc_derby.rb
|
199
|
+
- test/db/jdbc_h2.rb
|
200
|
+
- test/db/jdbc_mysql.rb
|
201
|
+
- test/db/jdbc_postgres.rb
|
202
|
+
- test/db/jndi_config.rb
|
203
|
+
- test/db/jndi_pooled_config.rb
|
204
|
+
- test/db/mssql.rb
|
205
|
+
- test/db/mysql.rb
|
206
|
+
- test/db/mysql_config.rb
|
207
|
+
- test/db/oracle.rb
|
208
|
+
- test/db/postgres.rb
|
209
|
+
- test/db/postgres_config.rb
|
210
|
+
- test/db/sqlite3.rb
|
211
|
+
- test/db2_binary_test.rb
|
212
|
+
- test/db2_reset_column_information_test.rb
|
213
|
+
- test/db2_serialize_test.rb
|
214
|
+
- test/db2_simple_test.rb
|
215
|
+
- test/db2_test.rb
|
216
|
+
- test/derby_binary_test.rb
|
217
|
+
- test/derby_migration_test.rb
|
218
|
+
- test/derby_reset_column_information_test.rb
|
219
|
+
- test/derby_row_locking_test.rb
|
220
|
+
- test/derby_schema_dump_test.rb
|
221
|
+
- test/derby_serialize_test.rb
|
222
|
+
- test/derby_simple_test.rb
|
223
|
+
- test/generic_jdbc_connection_test.rb
|
224
|
+
- test/h2_binary_test.rb
|
225
|
+
- test/h2_change_column_test.rb
|
226
|
+
- test/h2_schema_dump_test.rb
|
227
|
+
- test/h2_serialize_test.rb
|
228
|
+
- test/h2_simple_test.rb
|
229
|
+
- test/has_many_through.rb
|
230
|
+
- test/helper.rb
|
231
|
+
- test/hsqldb_binary_test.rb
|
232
|
+
- test/hsqldb_schema_dump_test.rb
|
233
|
+
- test/hsqldb_serialize_test.rb
|
234
|
+
- test/hsqldb_simple_test.rb
|
235
|
+
- test/informix_simple_test.rb
|
236
|
+
- test/jdbc/db2.rb
|
237
|
+
- test/jdbc/oracle.rb
|
238
|
+
- test/jdbc_common.rb
|
239
|
+
- test/jndi_callbacks_test.rb
|
240
|
+
- test/jndi_test.rb
|
241
|
+
- test/manualTestDatabase.rb
|
242
|
+
- test/models/add_not_null_column_to_table.rb
|
243
|
+
- test/models/auto_id.rb
|
244
|
+
- test/models/binary.rb
|
245
|
+
- test/models/custom_pk_name.rb
|
246
|
+
- test/models/data_types.rb
|
247
|
+
- test/models/entry.rb
|
248
|
+
- test/models/mixed_case.rb
|
249
|
+
- test/models/reserved_word.rb
|
250
|
+
- test/models/string_id.rb
|
251
|
+
- test/models/thing.rb
|
252
|
+
- test/models/topic.rb
|
253
|
+
- test/models/validates_uniqueness_of_string.rb
|
254
|
+
- test/mssql_binary_test.rb
|
255
|
+
- test/mssql_db_create_test.rb
|
256
|
+
- test/mssql_identity_insert_test.rb
|
257
|
+
- test/mssql_ignore_system_views_test.rb
|
258
|
+
- test/mssql_legacy_types_test.rb
|
259
|
+
- test/mssql_limit_offset_test.rb
|
260
|
+
- test/mssql_multibyte_test.rb
|
261
|
+
- test/mssql_null_test.rb
|
262
|
+
- test/mssql_reset_column_information_test.rb
|
263
|
+
- test/mssql_row_locking_test.rb
|
264
|
+
- test/mssql_serialize_test.rb
|
265
|
+
- test/mssql_simple_test.rb
|
266
|
+
- test/mssql_test.rb
|
267
|
+
- test/mysql_binary_test.rb
|
268
|
+
- test/mysql_db_create_test.rb
|
269
|
+
- test/mysql_index_length_test.rb
|
270
|
+
- test/mysql_multibyte_test.rb
|
271
|
+
- test/mysql_nonstandard_primary_key_test.rb
|
272
|
+
- test/mysql_reset_column_information_test.rb
|
273
|
+
- test/mysql_schema_dump_test.rb
|
274
|
+
- test/mysql_serialize_test.rb
|
275
|
+
- test/mysql_simple_test.rb
|
276
|
+
- test/mysql_test.rb
|
277
|
+
- test/oracle_binary_test.rb
|
278
|
+
- test/oracle_limit_test.rb
|
279
|
+
- test/oracle_reset_column_information_test.rb
|
280
|
+
- test/oracle_serialize_test.rb
|
281
|
+
- test/oracle_simple_test.rb
|
282
|
+
- test/oracle_specific_test.rb
|
283
|
+
- test/postgres_binary_test.rb
|
284
|
+
- test/postgres_db_create_test.rb
|
285
|
+
- test/postgres_drop_db_test.rb
|
286
|
+
- test/postgres_information_schema_leak_test.rb
|
287
|
+
- test/postgres_mixed_case_test.rb
|
288
|
+
- test/postgres_native_type_mapping_test.rb
|
289
|
+
- test/postgres_nonseq_pkey_test.rb
|
290
|
+
- test/postgres_reserved_test.rb
|
291
|
+
- test/postgres_reset_column_information_test.rb
|
292
|
+
- test/postgres_row_locking_test.rb
|
293
|
+
- test/postgres_schema_dump_test.rb
|
294
|
+
- test/postgres_schema_search_path_test.rb
|
295
|
+
- test/postgres_simple_test.rb
|
296
|
+
- test/postgres_table_alias_length_test.rb
|
297
|
+
- test/postgres_test.rb
|
298
|
+
- test/postgres_type_conversion_test.rb
|
299
|
+
- test/row_locking.rb
|
300
|
+
- test/schema_dump.rb
|
301
|
+
- test/serialize.rb
|
302
|
+
- test/simple.rb
|
303
|
+
- test/sqlite3_reset_column_information_test.rb
|
304
|
+
- test/sqlite3_schema_dump_test.rb
|
305
|
+
- test/sqlite3_serialize_test.rb
|
306
|
+
- test/sqlite3_simple_test.rb
|
307
|
+
- test/sqlite3_type_conversion_test.rb
|
308
|
+
- test/sybase_jtds_simple_test.rb
|
309
|
+
- test/sybase_reset_column_information_test.rb
|
310
|
+
- test/test_helper.rb
|
316
311
|
homepage: https://github.com/jruby/activerecord-jdbc-adapter
|
317
|
-
licenses:
|
318
|
-
|
319
|
-
post_install_message:
|
320
|
-
rdoc_options:
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
require_paths:
|
327
|
-
|
328
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
312
|
+
licenses:
|
313
|
+
- BSD
|
314
|
+
post_install_message:
|
315
|
+
rdoc_options:
|
316
|
+
- --main
|
317
|
+
- README.md
|
318
|
+
- -SHN
|
319
|
+
- -f
|
320
|
+
- darkfish
|
321
|
+
require_paths:
|
322
|
+
- lib
|
323
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
324
|
+
requirements:
|
325
|
+
- - '>='
|
326
|
+
- !ruby/object:Gem::Version
|
327
|
+
segments:
|
328
|
+
- 0
|
329
|
+
hash: 2
|
330
|
+
version: '0'
|
329
331
|
none: false
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
- 0
|
336
|
-
version: "0"
|
337
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
332
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
333
|
+
requirements:
|
334
|
+
- - '>='
|
335
|
+
- !ruby/object:Gem::Version
|
336
|
+
version: '0'
|
338
337
|
none: false
|
339
|
-
requirements:
|
340
|
-
- - ">="
|
341
|
-
- !ruby/object:Gem::Version
|
342
|
-
version: "0"
|
343
338
|
requirements: []
|
344
|
-
|
345
339
|
rubyforge_project: jruby-extras
|
346
340
|
rubygems_version: 1.8.24
|
347
|
-
signing_key:
|
341
|
+
signing_key:
|
348
342
|
specification_version: 3
|
349
343
|
summary: JDBC adapter for ActiveRecord, for use within JRuby on Rails.
|
350
344
|
test_files: []
|
351
|
-
|