activerecord-jdbc-adapter 1.0.3-java → 50.1-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +33 -0
- data/.travis.yml +79 -0
- data/.yardopts +4 -0
- data/CONTRIBUTING.md +50 -0
- data/Gemfile +91 -0
- data/History.md +1191 -0
- data/LICENSE.txt +22 -17
- data/README.md +169 -0
- data/RUNNING_TESTS.md +127 -0
- data/Rakefile +294 -5
- data/Rakefile.jdbc +20 -0
- data/activerecord-jdbc-adapter.gemspec +55 -0
- data/lib/active_record/connection_adapters/as400_adapter.rb +2 -0
- data/lib/active_record/connection_adapters/db2_adapter.rb +1 -0
- data/lib/active_record/connection_adapters/firebird_adapter.rb +1 -0
- data/lib/active_record/connection_adapters/mariadb_adapter.rb +1 -0
- data/lib/active_record/connection_adapters/sqlserver_adapter.rb +1 -0
- data/lib/activerecord-jdbc-adapter.rb +0 -5
- data/lib/arel/visitors/compat.rb +60 -0
- data/lib/arel/visitors/db2.rb +128 -6
- data/lib/arel/visitors/derby.rb +103 -10
- data/lib/arel/visitors/firebird.rb +79 -0
- data/lib/arel/visitors/h2.rb +25 -0
- data/lib/arel/visitors/hsqldb.rb +18 -10
- data/lib/arel/visitors/postgresql_jdbc.rb +6 -0
- data/lib/arel/visitors/sql_server.rb +225 -0
- data/lib/arel/visitors/sql_server/ng42.rb +293 -0
- data/lib/arjdbc.rb +11 -21
- data/lib/arjdbc/abstract/connection_management.rb +35 -0
- data/lib/arjdbc/abstract/core.rb +64 -0
- data/lib/arjdbc/abstract/database_statements.rb +64 -0
- data/lib/arjdbc/abstract/statement_cache.rb +58 -0
- data/lib/arjdbc/abstract/transaction_support.rb +86 -0
- data/lib/arjdbc/db2.rb +3 -1
- data/lib/arjdbc/db2/adapter.rb +630 -250
- data/lib/arjdbc/db2/as400.rb +130 -0
- data/lib/arjdbc/db2/column.rb +167 -0
- data/lib/arjdbc/db2/connection_methods.rb +44 -0
- data/lib/arjdbc/derby.rb +1 -5
- data/lib/arjdbc/derby/active_record_patch.rb +13 -0
- data/lib/arjdbc/derby/adapter.rb +409 -217
- data/lib/arjdbc/derby/connection_methods.rb +16 -14
- data/lib/arjdbc/derby/schema_creation.rb +15 -0
- data/lib/arjdbc/discover.rb +62 -50
- data/lib/arjdbc/firebird.rb +3 -1
- data/lib/arjdbc/firebird/adapter.rb +365 -62
- data/lib/arjdbc/firebird/connection_methods.rb +23 -0
- data/lib/arjdbc/h2.rb +2 -3
- data/lib/arjdbc/h2/adapter.rb +273 -6
- data/lib/arjdbc/h2/connection_methods.rb +23 -8
- data/lib/arjdbc/hsqldb.rb +2 -3
- data/lib/arjdbc/hsqldb/adapter.rb +204 -77
- data/lib/arjdbc/hsqldb/connection_methods.rb +24 -10
- data/lib/arjdbc/hsqldb/explain_support.rb +35 -0
- data/lib/arjdbc/hsqldb/schema_creation.rb +11 -0
- data/lib/arjdbc/informix.rb +4 -2
- data/lib/arjdbc/informix/adapter.rb +78 -54
- data/lib/arjdbc/informix/connection_methods.rb +8 -9
- data/lib/arjdbc/jdbc.rb +59 -2
- data/lib/arjdbc/jdbc/adapter.rb +356 -166
- data/lib/arjdbc/jdbc/adapter_java.jar +0 -0
- data/lib/arjdbc/jdbc/adapter_require.rb +46 -0
- data/lib/arjdbc/jdbc/base_ext.rb +15 -0
- data/lib/arjdbc/jdbc/callbacks.rb +27 -18
- data/lib/arjdbc/jdbc/column.rb +79 -20
- data/lib/arjdbc/jdbc/connection.rb +5 -119
- data/lib/arjdbc/jdbc/connection_methods.rb +32 -4
- data/lib/arjdbc/jdbc/error.rb +65 -0
- data/lib/arjdbc/jdbc/extension.rb +41 -29
- data/lib/arjdbc/jdbc/java.rb +5 -6
- data/lib/arjdbc/jdbc/jdbc.rake +3 -126
- data/lib/arjdbc/jdbc/railtie.rb +2 -9
- data/lib/arjdbc/jdbc/rake_tasks.rb +3 -10
- data/lib/arjdbc/jdbc/serialized_attributes_helper.rb +3 -0
- data/lib/arjdbc/jdbc/type_cast.rb +166 -0
- data/lib/arjdbc/jdbc/type_converter.rb +35 -19
- data/lib/arjdbc/mssql.rb +6 -3
- data/lib/arjdbc/mssql/adapter.rb +630 -298
- data/lib/arjdbc/mssql/column.rb +200 -0
- data/lib/arjdbc/mssql/connection_methods.rb +66 -17
- data/lib/arjdbc/mssql/explain_support.rb +99 -0
- data/lib/arjdbc/mssql/limit_helpers.rb +189 -50
- data/lib/arjdbc/mssql/lock_methods.rb +77 -0
- data/lib/arjdbc/mssql/types.rb +343 -0
- data/lib/arjdbc/mssql/utils.rb +82 -0
- data/lib/arjdbc/mysql.rb +2 -3
- data/lib/arjdbc/mysql/adapter.rb +86 -356
- data/lib/arjdbc/mysql/connection_methods.rb +159 -23
- data/lib/arjdbc/oracle/adapter.rb +714 -263
- data/lib/arjdbc/postgresql.rb +2 -3
- data/lib/arjdbc/postgresql/_bc_time_cast_patch.rb +24 -0
- data/lib/arjdbc/postgresql/adapter.rb +570 -400
- data/lib/arjdbc/postgresql/base/array_decoder.rb +26 -0
- data/lib/arjdbc/postgresql/base/array_encoder.rb +25 -0
- data/lib/arjdbc/postgresql/base/array_parser.rb +95 -0
- data/lib/arjdbc/postgresql/base/pgconn.rb +11 -0
- data/lib/arjdbc/postgresql/column.rb +51 -0
- data/lib/arjdbc/postgresql/connection_methods.rb +57 -18
- data/lib/arjdbc/postgresql/name.rb +24 -0
- data/lib/arjdbc/postgresql/oid_types.rb +192 -0
- data/lib/arjdbc/railtie.rb +11 -0
- data/lib/arjdbc/sqlite3.rb +2 -3
- data/lib/arjdbc/sqlite3/adapter.rb +518 -198
- data/lib/arjdbc/sqlite3/connection_methods.rb +49 -24
- data/lib/arjdbc/sybase.rb +2 -2
- data/lib/arjdbc/sybase/adapter.rb +7 -6
- data/lib/arjdbc/tasks.rb +13 -0
- data/lib/arjdbc/tasks/database_tasks.rb +52 -0
- data/lib/arjdbc/tasks/databases.rake +91 -0
- data/lib/arjdbc/tasks/databases3.rake +215 -0
- data/lib/arjdbc/tasks/databases4.rake +39 -0
- data/lib/arjdbc/tasks/db2_database_tasks.rb +104 -0
- data/lib/arjdbc/tasks/derby_database_tasks.rb +95 -0
- data/lib/arjdbc/tasks/h2_database_tasks.rb +31 -0
- data/lib/arjdbc/tasks/hsqldb_database_tasks.rb +70 -0
- data/lib/arjdbc/tasks/jdbc_database_tasks.rb +169 -0
- data/lib/arjdbc/tasks/mssql_database_tasks.rb +46 -0
- data/lib/arjdbc/util/quoted_cache.rb +60 -0
- data/lib/arjdbc/util/serialized_attributes.rb +98 -0
- data/lib/arjdbc/util/table_copier.rb +110 -0
- data/lib/arjdbc/version.rb +1 -6
- data/lib/generators/jdbc/USAGE +9 -0
- data/lib/generators/jdbc/jdbc_generator.rb +8 -0
- data/lib/jdbc_adapter.rb +1 -1
- data/lib/jdbc_adapter/rake_tasks.rb +3 -2
- data/lib/jdbc_adapter/version.rb +2 -1
- data/pom.xml +114 -0
- data/rails_generators/jdbc_generator.rb +1 -1
- data/rails_generators/templates/config/initializers/jdbc.rb +8 -5
- data/rails_generators/templates/lib/tasks/jdbc.rake +7 -4
- data/rakelib/01-tomcat.rake +51 -0
- data/rakelib/02-test.rake +132 -0
- data/rakelib/bundler_ext.rb +11 -0
- data/rakelib/compile.rake +67 -22
- data/rakelib/db.rake +61 -0
- data/rakelib/rails.rake +204 -29
- data/src/java/arjdbc/ArJdbcModule.java +286 -0
- data/src/java/arjdbc/db2/DB2Module.java +76 -0
- data/src/java/arjdbc/db2/DB2RubyJdbcConnection.java +126 -0
- data/src/java/arjdbc/derby/DerbyModule.java +99 -243
- data/src/java/arjdbc/derby/DerbyRubyJdbcConnection.java +152 -0
- data/src/java/arjdbc/firebird/FirebirdRubyJdbcConnection.java +174 -0
- data/src/java/arjdbc/{jdbc/JdbcConnectionFactory.java → h2/H2Module.java} +20 -6
- data/src/java/arjdbc/h2/H2RubyJdbcConnection.java +27 -12
- data/src/java/arjdbc/hsqldb/HSQLDBModule.java +73 -0
- data/src/java/arjdbc/informix/InformixRubyJdbcConnection.java +7 -6
- data/src/java/arjdbc/jdbc/AdapterJavaService.java +7 -29
- data/src/java/arjdbc/jdbc/Callable.java +44 -0
- data/src/java/arjdbc/jdbc/ConnectionFactory.java +132 -0
- data/src/java/arjdbc/jdbc/DataSourceConnectionFactory.java +157 -0
- data/src/java/arjdbc/jdbc/DriverConnectionFactory.java +63 -0
- data/src/java/arjdbc/jdbc/DriverWrapper.java +119 -0
- data/src/java/arjdbc/jdbc/JdbcResult.java +130 -0
- data/src/java/arjdbc/jdbc/RubyJdbcConnection.java +3622 -948
- data/src/java/arjdbc/mssql/MSSQLModule.java +90 -0
- data/src/java/arjdbc/mssql/MSSQLRubyJdbcConnection.java +181 -0
- data/src/java/arjdbc/mysql/MySQLModule.java +99 -81
- data/src/java/arjdbc/mysql/MySQLRubyJdbcConnection.java +294 -0
- data/src/java/arjdbc/oracle/OracleModule.java +80 -0
- data/src/java/arjdbc/oracle/OracleRubyJdbcConnection.java +387 -17
- data/src/java/arjdbc/postgresql/ByteaUtils.java +157 -0
- data/src/java/arjdbc/postgresql/PgResultSetMetaDataWrapper.java +23 -0
- data/src/java/arjdbc/postgresql/PostgreSQLModule.java +77 -0
- data/src/java/arjdbc/postgresql/PostgreSQLResult.java +184 -0
- data/src/java/arjdbc/postgresql/PostgreSQLRubyJdbcConnection.java +952 -0
- data/src/java/arjdbc/sqlite3/SQLite3Module.java +73 -0
- data/src/java/arjdbc/sqlite3/SQLite3RubyJdbcConnection.java +525 -0
- data/src/java/arjdbc/util/CallResultSet.java +826 -0
- data/src/java/arjdbc/util/DateTimeUtils.java +580 -0
- data/src/java/arjdbc/util/ObjectSupport.java +65 -0
- data/src/java/arjdbc/util/QuotingUtils.java +138 -0
- data/src/java/arjdbc/util/StringCache.java +63 -0
- data/src/java/arjdbc/util/StringHelper.java +159 -0
- metadata +245 -268
- data/History.txt +0 -369
- data/Manifest.txt +0 -180
- data/README.txt +0 -181
- data/lib/active_record/connection_adapters/oracle_adapter.rb +0 -1
- data/lib/arel/engines/sql/compilers/db2_compiler.rb +0 -9
- data/lib/arel/engines/sql/compilers/derby_compiler.rb +0 -6
- data/lib/arel/engines/sql/compilers/h2_compiler.rb +0 -6
- data/lib/arel/engines/sql/compilers/hsqldb_compiler.rb +0 -15
- data/lib/arel/engines/sql/compilers/jdbc_compiler.rb +0 -6
- data/lib/arel/engines/sql/compilers/mssql_compiler.rb +0 -46
- data/lib/arel/visitors/mssql.rb +0 -44
- data/lib/arjdbc/jdbc/compatibility.rb +0 -51
- data/lib/arjdbc/jdbc/core_ext.rb +0 -24
- data/lib/arjdbc/jdbc/discover.rb +0 -18
- data/lib/arjdbc/jdbc/driver.rb +0 -44
- data/lib/arjdbc/jdbc/missing_functionality_helper.rb +0 -87
- data/lib/arjdbc/jdbc/quoted_primary_key.rb +0 -28
- data/lib/arjdbc/jdbc/require_driver.rb +0 -16
- data/lib/arjdbc/mimer.rb +0 -2
- data/lib/arjdbc/mimer/adapter.rb +0 -142
- data/lib/arjdbc/mssql/tsql_helper.rb +0 -61
- data/lib/arjdbc/oracle.rb +0 -3
- data/lib/arjdbc/oracle/connection_methods.rb +0 -11
- data/lib/pg.rb +0 -4
- data/rakelib/package.rake +0 -92
- data/rakelib/test.rake +0 -81
- data/src/java/arjdbc/jdbc/SQLBlock.java +0 -48
- data/src/java/arjdbc/mssql/MssqlRubyJdbcConnection.java +0 -127
- data/src/java/arjdbc/postgresql/PostgresqlRubyJdbcConnection.java +0 -57
- data/src/java/arjdbc/sqlite3/Sqlite3RubyJdbcConnection.java +0 -64
- data/test/abstract_db_create.rb +0 -117
- data/test/activerecord/connection_adapters/type_conversion_test.rb +0 -31
- data/test/activerecord/connections/native_jdbc_mysql/connection.rb +0 -25
- data/test/db/db2.rb +0 -11
- data/test/db/derby.rb +0 -12
- data/test/db/h2.rb +0 -11
- data/test/db/hsqldb.rb +0 -13
- data/test/db/informix.rb +0 -11
- data/test/db/jdbc.rb +0 -11
- data/test/db/jndi_config.rb +0 -40
- data/test/db/logger.rb +0 -3
- data/test/db/mssql.rb +0 -9
- data/test/db/mysql.rb +0 -10
- data/test/db/oracle.rb +0 -34
- data/test/db/postgres.rb +0 -9
- data/test/db/sqlite3.rb +0 -11
- data/test/db2_simple_test.rb +0 -66
- data/test/derby_migration_test.rb +0 -68
- data/test/derby_multibyte_test.rb +0 -12
- data/test/derby_simple_test.rb +0 -99
- data/test/generic_jdbc_connection_test.rb +0 -29
- data/test/h2_simple_test.rb +0 -41
- data/test/has_many_through.rb +0 -79
- data/test/helper.rb +0 -5
- data/test/hsqldb_simple_test.rb +0 -6
- data/test/informix_simple_test.rb +0 -48
- data/test/jdbc_common.rb +0 -25
- data/test/jndi_callbacks_test.rb +0 -40
- data/test/jndi_test.rb +0 -25
- data/test/manualTestDatabase.rb +0 -191
- data/test/models/add_not_null_column_to_table.rb +0 -12
- data/test/models/auto_id.rb +0 -18
- data/test/models/data_types.rb +0 -28
- data/test/models/entry.rb +0 -43
- data/test/models/mixed_case.rb +0 -25
- data/test/models/reserved_word.rb +0 -18
- data/test/models/string_id.rb +0 -18
- data/test/models/validates_uniqueness_of_string.rb +0 -19
- data/test/mssql_db_create_test.rb +0 -26
- data/test/mssql_identity_insert_test.rb +0 -19
- data/test/mssql_legacy_types_test.rb +0 -58
- data/test/mssql_limit_offset_test.rb +0 -136
- data/test/mssql_multibyte_test.rb +0 -18
- data/test/mssql_simple_test.rb +0 -55
- data/test/mysql_db_create_test.rb +0 -27
- data/test/mysql_info_test.rb +0 -113
- data/test/mysql_multibyte_test.rb +0 -10
- data/test/mysql_nonstandard_primary_key_test.rb +0 -42
- data/test/mysql_simple_test.rb +0 -49
- data/test/oracle_simple_test.rb +0 -18
- data/test/oracle_specific_test.rb +0 -83
- data/test/pick_rails_version.rb +0 -3
- data/test/postgres_db_create_test.rb +0 -32
- data/test/postgres_drop_db_test.rb +0 -16
- data/test/postgres_mixed_case_test.rb +0 -29
- data/test/postgres_nonseq_pkey_test.rb +0 -38
- data/test/postgres_reserved_test.rb +0 -22
- data/test/postgres_schema_search_path_test.rb +0 -44
- data/test/postgres_simple_test.rb +0 -51
- data/test/postgres_table_alias_length_test.rb +0 -15
- data/test/simple.rb +0 -546
- data/test/sqlite3_simple_test.rb +0 -233
- data/test/sybase_jtds_simple_test.rb +0 -28
@@ -0,0 +1,174 @@
|
|
1
|
+
/*
|
2
|
+
* The MIT License
|
3
|
+
*
|
4
|
+
* Copyright 2015 Karol Bucek.
|
5
|
+
*
|
6
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
7
|
+
* of this software and associated documentation files (the "Software"), to deal
|
8
|
+
* in the Software without restriction, including without limitation the rights
|
9
|
+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
10
|
+
* copies of the Software, and to permit persons to whom the Software is
|
11
|
+
* furnished to do so, subject to the following conditions:
|
12
|
+
*
|
13
|
+
* The above copyright notice and this permission notice shall be included in
|
14
|
+
* all copies or substantial portions of the Software.
|
15
|
+
*
|
16
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
17
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
18
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
19
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
20
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
21
|
+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
22
|
+
* THE SOFTWARE.
|
23
|
+
*/
|
24
|
+
package arjdbc.firebird;
|
25
|
+
|
26
|
+
import arjdbc.jdbc.RubyJdbcConnection;
|
27
|
+
|
28
|
+
import java.sql.Connection;
|
29
|
+
import java.sql.ResultSet;
|
30
|
+
import java.sql.SQLException;
|
31
|
+
import java.sql.PreparedStatement;
|
32
|
+
import java.sql.ResultSetMetaData;
|
33
|
+
import java.sql.Types;
|
34
|
+
|
35
|
+
import org.jruby.Ruby;
|
36
|
+
import org.jruby.RubyClass;
|
37
|
+
import org.jruby.RubyString;
|
38
|
+
import org.jruby.runtime.ObjectAllocator;
|
39
|
+
import org.jruby.runtime.ThreadContext;
|
40
|
+
import org.jruby.runtime.builtin.IRubyObject;
|
41
|
+
|
42
|
+
/**
|
43
|
+
* @author kares
|
44
|
+
*/
|
45
|
+
public class FirebirdRubyJdbcConnection extends RubyJdbcConnection {
|
46
|
+
|
47
|
+
protected FirebirdRubyJdbcConnection(Ruby runtime, RubyClass metaClass) {
|
48
|
+
super(runtime, metaClass);
|
49
|
+
}
|
50
|
+
|
51
|
+
public static RubyClass createFirebirdJdbcConnectionClass(Ruby runtime, RubyClass jdbcConnection) {
|
52
|
+
final RubyClass clazz = RubyJdbcConnection.getConnectionAdapters(runtime).
|
53
|
+
defineClassUnder("FirebirdJdbcConnection", jdbcConnection, ALLOCATOR);
|
54
|
+
clazz.defineAnnotatedMethods(FirebirdRubyJdbcConnection.class);
|
55
|
+
return clazz;
|
56
|
+
}
|
57
|
+
|
58
|
+
private static final ObjectAllocator ALLOCATOR = new ObjectAllocator() {
|
59
|
+
public IRubyObject allocate(Ruby runtime, RubyClass klass) {
|
60
|
+
return new FirebirdRubyJdbcConnection(runtime, klass);
|
61
|
+
}
|
62
|
+
};
|
63
|
+
|
64
|
+
@Override // resultSet.wasNull() might be falsy for '' treated as null
|
65
|
+
protected IRubyObject stringToRuby(final ThreadContext context,
|
66
|
+
final Ruby runtime, final ResultSet resultSet, final int column)
|
67
|
+
throws SQLException {
|
68
|
+
final String value = resultSet.getString(column);
|
69
|
+
if ( value == null ) return runtime.getNil();
|
70
|
+
return RubyString.newUnicodeString(runtime, value);
|
71
|
+
}
|
72
|
+
|
73
|
+
@Override // booleans are emulated can not setNull(index, Types.BOOLEAN)
|
74
|
+
protected void setBooleanParameter(final ThreadContext context,
|
75
|
+
final Connection connection, final PreparedStatement statement,
|
76
|
+
final int index, final IRubyObject value,
|
77
|
+
final IRubyObject attribute, final int type) throws SQLException {
|
78
|
+
if ( value.isNil() ) statement.setNull(index, Types.CHAR);
|
79
|
+
else {
|
80
|
+
statement.setBoolean(index, value.isTrue());
|
81
|
+
}
|
82
|
+
}
|
83
|
+
|
84
|
+
protected IRubyObject jdbcToRuby(
|
85
|
+
final ThreadContext context, final Ruby runtime,
|
86
|
+
final int column, final int type, final ResultSet resultSet)
|
87
|
+
throws SQLException {
|
88
|
+
|
89
|
+
switch (type) {
|
90
|
+
case SMALL_CHAR_1:
|
91
|
+
return smallChar1ToRuby(runtime, resultSet, column);
|
92
|
+
case SMALL_CHAR_2:
|
93
|
+
return smallChar2ToRuby(runtime, resultSet, column);
|
94
|
+
}
|
95
|
+
return super.jdbcToRuby(context, runtime, column, type, resultSet);
|
96
|
+
}
|
97
|
+
|
98
|
+
private static IRubyObject smallChar1ToRuby(
|
99
|
+
final Ruby runtime, final ResultSet resultSet, final int column)
|
100
|
+
throws SQLException {
|
101
|
+
String value = resultSet.getString(column);
|
102
|
+
if ( value == null ) return runtime.getNil();
|
103
|
+
if ( value.length() > 1 && value.charAt(1) == ' ' ) {
|
104
|
+
value = value.substring(0, 1);
|
105
|
+
}
|
106
|
+
return RubyString.newUnicodeString(runtime, value);
|
107
|
+
}
|
108
|
+
|
109
|
+
private static IRubyObject smallChar2ToRuby(
|
110
|
+
final Ruby runtime, final ResultSet resultSet, final int column)
|
111
|
+
throws SQLException {
|
112
|
+
String value = resultSet.getString(column);
|
113
|
+
if ( value == null ) return runtime.getNil();
|
114
|
+
if ( value.length() > 2 && value.charAt(2) == ' ' ) {
|
115
|
+
value = value.substring(0, 2);
|
116
|
+
}
|
117
|
+
return RubyString.newUnicodeString(runtime, value);
|
118
|
+
}
|
119
|
+
|
120
|
+
private final static int SMALL_CHAR_1 = 31431001;
|
121
|
+
private final static int SMALL_CHAR_2 = 31431002;
|
122
|
+
|
123
|
+
@Override
|
124
|
+
protected ColumnData[] extractColumns(final ThreadContext context,
|
125
|
+
final Connection connection, final ResultSet resultSet,
|
126
|
+
final boolean downCase) throws SQLException {
|
127
|
+
|
128
|
+
final ResultSetMetaData resultMetaData = resultSet.getMetaData();
|
129
|
+
|
130
|
+
final int columnCount = resultMetaData.getColumnCount();
|
131
|
+
final ColumnData[] columns = new ColumnData[columnCount];
|
132
|
+
|
133
|
+
for ( int i = 1; i <= columnCount; i++ ) { // metadata is one-based
|
134
|
+
String name = resultMetaData.getColumnLabel(i);
|
135
|
+
if ( downCase ) {
|
136
|
+
name = name.toLowerCase();
|
137
|
+
} else {
|
138
|
+
name = caseConvertIdentifierForRails(connection, name);
|
139
|
+
}
|
140
|
+
final RubyString columnName = RubyString.newUnicodeString(context.runtime, name);
|
141
|
+
|
142
|
+
int columnType = resultMetaData.getColumnType(i);
|
143
|
+
if (columnType == Types.CHAR) {
|
144
|
+
// CHAR(1) 'aligned' by JayBird to "1 "
|
145
|
+
final int prec = resultMetaData.getPrecision(i);
|
146
|
+
if ( prec == 1 ) {
|
147
|
+
columnType = SMALL_CHAR_1;
|
148
|
+
}
|
149
|
+
else if ( prec == 2 ) {
|
150
|
+
columnType = SMALL_CHAR_2;
|
151
|
+
}
|
152
|
+
}
|
153
|
+
|
154
|
+
columns[i - 1] = new ColumnData(columnName, columnType, i);
|
155
|
+
}
|
156
|
+
|
157
|
+
return columns;
|
158
|
+
}
|
159
|
+
|
160
|
+
// storesMixedCaseIdentifiers() return false;
|
161
|
+
// storesLowerCaseIdentifiers() return false;
|
162
|
+
// storesUpperCaseIdentifiers() return true;
|
163
|
+
|
164
|
+
@Override
|
165
|
+
protected String caseConvertIdentifierForRails(final Connection connection, final String value) {
|
166
|
+
return value == null ? null : value.toLowerCase();
|
167
|
+
}
|
168
|
+
|
169
|
+
@Override
|
170
|
+
protected String caseConvertIdentifierForJdbc(final Connection connection, final String value) {
|
171
|
+
return value == null ? null : value.toUpperCase();
|
172
|
+
}
|
173
|
+
|
174
|
+
}
|
@@ -1,4 +1,5 @@
|
|
1
1
|
/***** BEGIN LICENSE BLOCK *****
|
2
|
+
* Copyright (c) 2012-2013 Karol Bucek <self@kares.org>
|
2
3
|
* Copyright (c) 2006-2010 Nick Sieger <nick@nicksieger.com>
|
3
4
|
* Copyright (c) 2006-2007 Ola Bini <ola.bini@gmail.com>
|
4
5
|
*
|
@@ -22,15 +23,28 @@
|
|
22
23
|
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
23
24
|
***** END LICENSE BLOCK *****/
|
24
25
|
|
25
|
-
package arjdbc.
|
26
|
+
package arjdbc.h2;
|
26
27
|
|
27
|
-
import
|
28
|
+
import org.jruby.Ruby;
|
29
|
+
import org.jruby.RubyModule;
|
28
30
|
|
29
31
|
/**
|
30
|
-
*
|
32
|
+
* ArJdbc::H2
|
31
33
|
*
|
32
|
-
* @author
|
34
|
+
* @author kares
|
33
35
|
*/
|
34
|
-
|
35
|
-
|
36
|
+
//@org.jruby.anno.JRubyModule(name = "ArJdbc::H2")
|
37
|
+
public class H2Module {
|
38
|
+
|
39
|
+
public static RubyModule load(final RubyModule arJdbc) {
|
40
|
+
RubyModule h2 = arJdbc.defineModuleUnder("H2");
|
41
|
+
// NOTE: currently no Java implemented Ruby methods
|
42
|
+
// h2.defineAnnotatedMethods( H2Module.class );
|
43
|
+
return h2;
|
44
|
+
}
|
45
|
+
|
46
|
+
public static RubyModule load(final Ruby runtime) {
|
47
|
+
return load( arjdbc.ArJdbcModule.get(runtime) );
|
48
|
+
}
|
49
|
+
|
36
50
|
}
|
@@ -1,5 +1,4 @@
|
|
1
|
-
|
2
|
-
**** BEGIN LICENSE BLOCK *****
|
1
|
+
/***** BEGIN LICENSE BLOCK *****
|
3
2
|
* Copyright (c) 2006-2010 Nick Sieger <nick@nicksieger.com>
|
4
3
|
* Copyright (c) 2006-2007 Ola Bini <ola.bini@gmail.com>
|
5
4
|
* Copyright (c) 2008-2009 Thomas E Enebo <enebo@acm.org>
|
@@ -26,11 +25,8 @@
|
|
26
25
|
|
27
26
|
package arjdbc.h2;
|
28
27
|
|
29
|
-
import java.sql.
|
28
|
+
import java.sql.Connection;
|
30
29
|
import java.sql.SQLException;
|
31
|
-
import java.sql.Types;
|
32
|
-
|
33
|
-
import arjdbc.jdbc.RubyJdbcConnection;
|
34
30
|
|
35
31
|
import org.jruby.Ruby;
|
36
32
|
import org.jruby.RubyClass;
|
@@ -41,20 +37,27 @@ import org.jruby.runtime.builtin.IRubyObject;
|
|
41
37
|
*
|
42
38
|
* @author nicksieger
|
43
39
|
*/
|
44
|
-
|
45
|
-
|
40
|
+
@org.jruby.anno.JRubyClass(name = "ActiveRecord::ConnectionAdapters::H2JdbcConnection")
|
41
|
+
public class H2RubyJdbcConnection extends arjdbc.jdbc.RubyJdbcConnection {
|
42
|
+
private static final long serialVersionUID = -2652911264521657428L;
|
43
|
+
|
44
|
+
public H2RubyJdbcConnection(Ruby runtime, RubyClass metaClass) {
|
46
45
|
super(runtime, metaClass);
|
47
46
|
}
|
48
47
|
|
49
48
|
public static RubyClass createH2JdbcConnectionClass(Ruby runtime, RubyClass jdbcConnection) {
|
50
|
-
RubyClass clazz =
|
51
|
-
|
49
|
+
RubyClass clazz = getConnectionAdapters(runtime).
|
50
|
+
defineClassUnder("H2JdbcConnection", jdbcConnection, ALLOCATOR);
|
52
51
|
clazz.defineAnnotatedMethods(H2RubyJdbcConnection.class);
|
53
|
-
|
54
52
|
return clazz;
|
55
53
|
}
|
56
54
|
|
57
|
-
|
55
|
+
public static RubyClass load(final Ruby runtime) {
|
56
|
+
RubyClass jdbcConnection = getJdbcConnection(runtime);
|
57
|
+
return createH2JdbcConnectionClass(runtime, jdbcConnection);
|
58
|
+
}
|
59
|
+
|
60
|
+
protected static ObjectAllocator ALLOCATOR = new ObjectAllocator() {
|
58
61
|
public IRubyObject allocate(Ruby runtime, RubyClass klass) {
|
59
62
|
return new H2RubyJdbcConnection(runtime, klass);
|
60
63
|
}
|
@@ -67,4 +70,16 @@ public class H2RubyJdbcConnection extends RubyJdbcConnection {
|
|
67
70
|
protected boolean databaseSupportsSchemas() {
|
68
71
|
return true;
|
69
72
|
}
|
73
|
+
|
74
|
+
@Override
|
75
|
+
protected String caseConvertIdentifierForJdbc(final Connection connection, final String value) {
|
76
|
+
if ( value == null ) return null;
|
77
|
+
return value.toUpperCase();
|
78
|
+
}
|
79
|
+
|
80
|
+
// NOTE: not supported
|
81
|
+
// org.h2.jdbc.JdbcSQLException: Hexadecimal string contains non-hex character: "PUBLIC" [90004-178]
|
82
|
+
//@Override
|
83
|
+
//protected boolean useByteStrings() { return false; }
|
84
|
+
|
70
85
|
}
|
@@ -0,0 +1,73 @@
|
|
1
|
+
/***** BEGIN LICENSE BLOCK *****
|
2
|
+
* Copyright (c) 2012-2013 Karol Bucek <self@kares.org>
|
3
|
+
* Copyright (c) 2006-2010 Nick Sieger <nick@nicksieger.com>
|
4
|
+
* Copyright (c) 2006-2007 Ola Bini <ola.bini@gmail.com>
|
5
|
+
*
|
6
|
+
* Permission is hereby granted, free of charge, to any person obtaining
|
7
|
+
* a copy of this software and associated documentation files (the
|
8
|
+
* "Software"), to deal in the Software without restriction, including
|
9
|
+
* without limitation the rights to use, copy, modify, merge, publish,
|
10
|
+
* distribute, sublicense, and/or sell copies of the Software, and to
|
11
|
+
* permit persons to whom the Software is furnished to do so, subject to
|
12
|
+
* the following conditions:
|
13
|
+
*
|
14
|
+
* The above copyright notice and this permission notice shall be
|
15
|
+
* included in all copies or substantial portions of the Software.
|
16
|
+
*
|
17
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
18
|
+
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
19
|
+
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
20
|
+
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
21
|
+
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
22
|
+
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
23
|
+
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
24
|
+
***** END LICENSE BLOCK *****/
|
25
|
+
|
26
|
+
package arjdbc.hsqldb;
|
27
|
+
|
28
|
+
import static arjdbc.util.QuotingUtils.BYTES_0;
|
29
|
+
import static arjdbc.util.QuotingUtils.BYTES_1;
|
30
|
+
import static arjdbc.util.QuotingUtils.quoteSingleQuotesWithFallback;
|
31
|
+
|
32
|
+
import org.jruby.Ruby;
|
33
|
+
import org.jruby.RubyModule;
|
34
|
+
import org.jruby.RubyString;
|
35
|
+
import org.jruby.anno.JRubyMethod;
|
36
|
+
import org.jruby.runtime.ThreadContext;
|
37
|
+
import org.jruby.runtime.builtin.IRubyObject;
|
38
|
+
|
39
|
+
public class HSQLDBModule {
|
40
|
+
|
41
|
+
public static RubyModule load(final RubyModule arJdbc) {
|
42
|
+
RubyModule hsqldb = arJdbc.defineModuleUnder("HSQLDB");
|
43
|
+
hsqldb.defineAnnotatedMethods( HSQLDBModule.class );
|
44
|
+
return hsqldb;
|
45
|
+
}
|
46
|
+
|
47
|
+
public static RubyModule load(final Ruby runtime) {
|
48
|
+
return load( arjdbc.ArJdbcModule.get(runtime) );
|
49
|
+
}
|
50
|
+
|
51
|
+
@JRubyMethod(name = "quote_string", required = 1, frame = false)
|
52
|
+
public static IRubyObject quote_string(
|
53
|
+
final ThreadContext context,
|
54
|
+
final IRubyObject self,
|
55
|
+
final IRubyObject string) {
|
56
|
+
return quoteSingleQuotesWithFallback(context, string);
|
57
|
+
}
|
58
|
+
|
59
|
+
@JRubyMethod(name = "quoted_true", required = 0, frame = false)
|
60
|
+
public static IRubyObject quoted_true(
|
61
|
+
final ThreadContext context,
|
62
|
+
final IRubyObject self) {
|
63
|
+
return RubyString.newString(context.getRuntime(), BYTES_1);
|
64
|
+
}
|
65
|
+
|
66
|
+
@JRubyMethod(name = "quoted_false", required = 0, frame = false)
|
67
|
+
public static IRubyObject quoted_false(
|
68
|
+
final ThreadContext context,
|
69
|
+
final IRubyObject self) {
|
70
|
+
return RubyString.newString(context.getRuntime(), BYTES_0);
|
71
|
+
}
|
72
|
+
|
73
|
+
}
|
@@ -35,6 +35,7 @@ import arjdbc.jdbc.RubyJdbcConnection;
|
|
35
35
|
import org.jruby.Ruby;
|
36
36
|
import org.jruby.RubyClass;
|
37
37
|
import org.jruby.runtime.ObjectAllocator;
|
38
|
+
import org.jruby.runtime.ThreadContext;
|
38
39
|
import org.jruby.runtime.builtin.IRubyObject;
|
39
40
|
|
40
41
|
/**
|
@@ -64,11 +65,11 @@ public class InformixRubyJdbcConnection extends RubyJdbcConnection {
|
|
64
65
|
* Treat LONGVARCHAR as CLOB on Informix for purposes of converting a JDBC value to Ruby.
|
65
66
|
*/
|
66
67
|
@Override
|
67
|
-
protected IRubyObject jdbcToRuby(
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
return super.jdbcToRuby(runtime, column, type, resultSet);
|
68
|
+
protected IRubyObject jdbcToRuby(
|
69
|
+
final ThreadContext context, final Ruby runtime,
|
70
|
+
final int column, int type, final ResultSet resultSet)
|
71
|
+
throws SQLException {
|
72
|
+
if ( type == Types.LONGVARCHAR ) type = Types.CLOB;
|
73
|
+
return super.jdbcToRuby(context, runtime, column, type, resultSet);
|
73
74
|
}
|
74
75
|
}
|
@@ -1,5 +1,5 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
/***** BEGIN LICENSE BLOCK *****
|
2
|
+
* Copyright (c) 2012-2014 Karol Bucek <self@kares.org>
|
3
3
|
* Copyright (c) 2006-2010 Nick Sieger <nick@nicksieger.com>
|
4
4
|
* Copyright (c) 2006-2007 Ola Bini <ola.bini@gmail.com>
|
5
5
|
* Copyright (c) 2008-2009 Thomas E Enebo <enebo@acm.org>
|
@@ -28,38 +28,16 @@ package arjdbc.jdbc;
|
|
28
28
|
|
29
29
|
import java.io.IOException;
|
30
30
|
|
31
|
-
import arjdbc.derby.DerbyModule;
|
32
|
-
import arjdbc.h2.H2RubyJdbcConnection;
|
33
|
-
import arjdbc.informix.InformixRubyJdbcConnection;
|
34
|
-
import arjdbc.mssql.MssqlRubyJdbcConnection;
|
35
|
-
import arjdbc.mysql.MySQLModule;
|
36
|
-
import arjdbc.oracle.OracleRubyJdbcConnection;
|
37
|
-
import arjdbc.postgresql.PostgresqlRubyJdbcConnection;
|
38
|
-
import arjdbc.sqlite3.Sqlite3RubyJdbcConnection;
|
39
|
-
|
40
31
|
import org.jruby.Ruby;
|
41
|
-
import org.jruby.RubyClass;
|
42
|
-
import org.jruby.RubyModule;
|
43
|
-
import org.jruby.RubyObjectAdapter;
|
44
|
-
import org.jruby.javasupport.JavaEmbedUtils;
|
45
32
|
import org.jruby.runtime.load.BasicLibraryService;
|
46
33
|
|
34
|
+
@Deprecated
|
47
35
|
public class AdapterJavaService implements BasicLibraryService {
|
48
|
-
private static RubyObjectAdapter rubyApi;
|
49
36
|
|
50
37
|
public boolean basicLoad(final Ruby runtime) throws IOException {
|
51
|
-
|
52
|
-
|
53
|
-
MssqlRubyJdbcConnection.createMssqlJdbcConnectionClass(runtime, jdbcConnection);
|
54
|
-
InformixRubyJdbcConnection.createInformixJdbcConnectionClass(runtime, jdbcConnection);
|
55
|
-
OracleRubyJdbcConnection.createOracleJdbcConnectionClass(runtime, jdbcConnection);
|
56
|
-
Sqlite3RubyJdbcConnection.createSqlite3JdbcConnectionClass(runtime, jdbcConnection);
|
57
|
-
H2RubyJdbcConnection.createH2JdbcConnectionClass(runtime, jdbcConnection);
|
58
|
-
RubyModule arJdbc = runtime.getOrCreateModule("ArJdbc");
|
59
|
-
|
60
|
-
rubyApi = JavaEmbedUtils.newObjectAdapter();
|
61
|
-
MySQLModule.load(arJdbc);
|
62
|
-
DerbyModule.load(arJdbc, rubyApi);
|
38
|
+
RubyJdbcConnection.createJdbcConnectionClass(runtime);
|
39
|
+
arjdbc.ArJdbcModule.load(runtime);
|
63
40
|
return true;
|
64
41
|
}
|
65
|
-
|
42
|
+
|
43
|
+
}
|
@@ -0,0 +1,44 @@
|
|
1
|
+
/*
|
2
|
+
* The MIT License
|
3
|
+
*
|
4
|
+
* Copyright 2013 Karol Bucek.
|
5
|
+
*
|
6
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
7
|
+
* of this software and associated documentation files (the "Software"), to deal
|
8
|
+
* in the Software without restriction, including without limitation the rights
|
9
|
+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
10
|
+
* copies of the Software, and to permit persons to whom the Software is
|
11
|
+
* furnished to do so, subject to the following conditions:
|
12
|
+
*
|
13
|
+
* The above copyright notice and this permission notice shall be included in
|
14
|
+
* all copies or substantial portions of the Software.
|
15
|
+
*
|
16
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
17
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
18
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
19
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
20
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
21
|
+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
22
|
+
* THE SOFTWARE.
|
23
|
+
*/
|
24
|
+
package arjdbc.jdbc;
|
25
|
+
|
26
|
+
import java.sql.Connection;
|
27
|
+
import java.sql.SQLException;
|
28
|
+
|
29
|
+
/**
|
30
|
+
* A JDBC connection callable ("block") of code.
|
31
|
+
*
|
32
|
+
* @author kares
|
33
|
+
*/
|
34
|
+
public interface Callable<T> {
|
35
|
+
|
36
|
+
/**
|
37
|
+
* Perform an operation in the context of the given connection.
|
38
|
+
* @param connection
|
39
|
+
* @return
|
40
|
+
* @throws SQLException
|
41
|
+
*/
|
42
|
+
T call(final Connection connection) throws SQLException;
|
43
|
+
|
44
|
+
}
|