activerecord-jdbc-adapter-ficoh 1.3.21-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +35 -0
- data/.travis.yml +462 -0
- data/.yardopts +4 -0
- data/Appraisals +36 -0
- data/CONTRIBUTING.md +49 -0
- data/Gemfile +68 -0
- data/History.md +1191 -0
- data/LICENSE.txt +25 -0
- data/README.md +277 -0
- data/RUNNING_TESTS.md +88 -0
- data/Rakefile +298 -0
- data/Rakefile.jdbc +20 -0
- data/activerecord-jdbc-adapter.gemspec +63 -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/derby_adapter.rb +1 -0
- data/lib/active_record/connection_adapters/firebird_adapter.rb +1 -0
- data/lib/active_record/connection_adapters/h2_adapter.rb +1 -0
- data/lib/active_record/connection_adapters/hsqldb_adapter.rb +1 -0
- data/lib/active_record/connection_adapters/informix_adapter.rb +1 -0
- data/lib/active_record/connection_adapters/jdbc_adapter.rb +1 -0
- data/lib/active_record/connection_adapters/jndi_adapter.rb +1 -0
- data/lib/active_record/connection_adapters/mariadb_adapter.rb +1 -0
- data/lib/active_record/connection_adapters/mssql_adapter.rb +1 -0
- data/lib/active_record/connection_adapters/mysql2_adapter.rb +1 -0
- data/lib/active_record/connection_adapters/mysql_adapter.rb +1 -0
- data/lib/active_record/connection_adapters/oracle_adapter.rb +1 -0
- data/lib/active_record/connection_adapters/postgresql_adapter.rb +1 -0
- data/lib/active_record/connection_adapters/sqlite3_adapter.rb +1 -0
- data/lib/active_record/connection_adapters/sqlserver_adapter.rb +1 -0
- data/lib/activerecord-jdbc-adapter.rb +1 -0
- data/lib/arel/visitors/compat.rb +64 -0
- data/lib/arel/visitors/db2.rb +137 -0
- data/lib/arel/visitors/derby.rb +112 -0
- data/lib/arel/visitors/firebird.rb +79 -0
- data/lib/arel/visitors/h2.rb +25 -0
- data/lib/arel/visitors/hsqldb.rb +32 -0
- 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 +22 -0
- data/lib/arjdbc/db2.rb +4 -0
- data/lib/arjdbc/db2/adapter.rb +802 -0
- data/lib/arjdbc/db2/as400.rb +137 -0
- data/lib/arjdbc/db2/column.rb +177 -0
- data/lib/arjdbc/db2/connection_methods.rb +45 -0
- data/lib/arjdbc/derby.rb +3 -0
- data/lib/arjdbc/derby/active_record_patch.rb +13 -0
- data/lib/arjdbc/derby/adapter.rb +567 -0
- data/lib/arjdbc/derby/connection_methods.rb +16 -0
- data/lib/arjdbc/derby/schema_creation.rb +15 -0
- data/lib/arjdbc/discover.rb +104 -0
- data/lib/arjdbc/firebird.rb +4 -0
- data/lib/arjdbc/firebird/adapter.rb +468 -0
- data/lib/arjdbc/firebird/connection_methods.rb +20 -0
- data/lib/arjdbc/h2.rb +3 -0
- data/lib/arjdbc/h2/adapter.rb +335 -0
- data/lib/arjdbc/h2/connection_methods.rb +22 -0
- data/lib/arjdbc/hsqldb.rb +3 -0
- data/lib/arjdbc/hsqldb/adapter.rb +304 -0
- data/lib/arjdbc/hsqldb/connection_methods.rb +23 -0
- data/lib/arjdbc/hsqldb/explain_support.rb +35 -0
- data/lib/arjdbc/hsqldb/schema_creation.rb +11 -0
- data/lib/arjdbc/informix.rb +5 -0
- data/lib/arjdbc/informix/adapter.rb +160 -0
- data/lib/arjdbc/informix/connection_methods.rb +9 -0
- data/lib/arjdbc/jdbc.rb +62 -0
- data/lib/arjdbc/jdbc/adapter.rb +997 -0
- data/lib/arjdbc/jdbc/adapter_require.rb +46 -0
- data/lib/arjdbc/jdbc/arel_support.rb +149 -0
- data/lib/arjdbc/jdbc/base_ext.rb +34 -0
- data/lib/arjdbc/jdbc/callbacks.rb +52 -0
- data/lib/arjdbc/jdbc/column.rb +83 -0
- data/lib/arjdbc/jdbc/connection.rb +26 -0
- data/lib/arjdbc/jdbc/connection_methods.rb +59 -0
- data/lib/arjdbc/jdbc/driver.rb +44 -0
- data/lib/arjdbc/jdbc/error.rb +75 -0
- data/lib/arjdbc/jdbc/extension.rb +69 -0
- data/lib/arjdbc/jdbc/java.rb +13 -0
- data/lib/arjdbc/jdbc/type_cast.rb +154 -0
- data/lib/arjdbc/jdbc/type_converter.rb +142 -0
- data/lib/arjdbc/mssql.rb +7 -0
- data/lib/arjdbc/mssql/adapter.rb +822 -0
- data/lib/arjdbc/mssql/column.rb +207 -0
- data/lib/arjdbc/mssql/connection_methods.rb +72 -0
- data/lib/arjdbc/mssql/explain_support.rb +99 -0
- data/lib/arjdbc/mssql/limit_helpers.rb +231 -0
- 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 +3 -0
- data/lib/arjdbc/mysql/adapter.rb +998 -0
- data/lib/arjdbc/mysql/bulk_change_table.rb +150 -0
- data/lib/arjdbc/mysql/column.rb +167 -0
- data/lib/arjdbc/mysql/connection_methods.rb +137 -0
- data/lib/arjdbc/mysql/explain_support.rb +82 -0
- data/lib/arjdbc/mysql/schema_creation.rb +58 -0
- data/lib/arjdbc/oracle.rb +4 -0
- data/lib/arjdbc/oracle/adapter.rb +968 -0
- data/lib/arjdbc/oracle/column.rb +136 -0
- data/lib/arjdbc/oracle/connection_methods.rb +21 -0
- data/lib/arjdbc/postgresql.rb +3 -0
- data/lib/arjdbc/postgresql/_bc_time_cast_patch.rb +21 -0
- data/lib/arjdbc/postgresql/adapter.rb +1498 -0
- data/lib/arjdbc/postgresql/base/array_parser.rb +95 -0
- data/lib/arjdbc/postgresql/base/oid.rb +412 -0
- data/lib/arjdbc/postgresql/base/pgconn.rb +8 -0
- data/lib/arjdbc/postgresql/base/schema_definitions.rb +132 -0
- data/lib/arjdbc/postgresql/column.rb +640 -0
- data/lib/arjdbc/postgresql/connection_methods.rb +44 -0
- data/lib/arjdbc/postgresql/explain_support.rb +53 -0
- data/lib/arjdbc/postgresql/oid/bytea.rb +3 -0
- data/lib/arjdbc/postgresql/oid_types.rb +265 -0
- data/lib/arjdbc/postgresql/schema_creation.rb +60 -0
- data/lib/arjdbc/railtie.rb +11 -0
- data/lib/arjdbc/sqlite3.rb +3 -0
- data/lib/arjdbc/sqlite3/adapter.rb +654 -0
- data/lib/arjdbc/sqlite3/connection_methods.rb +36 -0
- data/lib/arjdbc/sqlite3/explain_support.rb +29 -0
- data/lib/arjdbc/sybase.rb +2 -0
- data/lib/arjdbc/sybase/adapter.rb +47 -0
- data/lib/arjdbc/tasks.rb +13 -0
- data/lib/arjdbc/tasks/database_tasks.rb +66 -0
- data/lib/arjdbc/tasks/databases.rake +91 -0
- data/lib/arjdbc/tasks/databases3.rake +239 -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/tasks/oracle/enhanced_structure_dump.rb +297 -0
- data/lib/arjdbc/tasks/oracle_database_tasks.rb +65 -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 +108 -0
- data/lib/arjdbc/version.rb +8 -0
- data/lib/generators/jdbc/USAGE +9 -0
- data/lib/generators/jdbc/jdbc_generator.rb +17 -0
- data/pom.xml +285 -0
- data/rails_generators/jdbc_generator.rb +15 -0
- data/rails_generators/templates/config/initializers/jdbc.rb +10 -0
- data/rails_generators/templates/lib/tasks/jdbc.rake +11 -0
- data/rakelib/01-tomcat.rake +51 -0
- data/rakelib/02-test.rake +151 -0
- data/rakelib/bundler_ext.rb +11 -0
- data/rakelib/db.rake +58 -0
- data/rakelib/rails.rake +77 -0
- data/src/java/arjdbc/ArJdbcModule.java +288 -0
- data/src/java/arjdbc/db2/DB2Module.java +77 -0
- data/src/java/arjdbc/db2/DB2RubyJdbcConnection.java +128 -0
- data/src/java/arjdbc/derby/DerbyModule.java +180 -0
- data/src/java/arjdbc/derby/DerbyRubyJdbcConnection.java +153 -0
- data/src/java/arjdbc/firebird/FirebirdRubyJdbcConnection.java +190 -0
- data/src/java/arjdbc/h2/H2Module.java +50 -0
- data/src/java/arjdbc/h2/H2RubyJdbcConnection.java +86 -0
- data/src/java/arjdbc/hsqldb/HSQLDBModule.java +74 -0
- data/src/java/arjdbc/informix/InformixRubyJdbcConnection.java +76 -0
- data/src/java/arjdbc/jdbc/AdapterJavaService.java +43 -0
- data/src/java/arjdbc/jdbc/Callable.java +44 -0
- data/src/java/arjdbc/jdbc/ConnectionFactory.java +77 -0
- data/src/java/arjdbc/jdbc/DataSourceConnectionFactory.java +156 -0
- data/src/java/arjdbc/jdbc/DriverConnectionFactory.java +63 -0
- data/src/java/arjdbc/jdbc/DriverWrapper.java +128 -0
- data/src/java/arjdbc/jdbc/JdbcConnectionFactory.java +32 -0
- data/src/java/arjdbc/jdbc/RubyJdbcConnection.java +4541 -0
- data/src/java/arjdbc/jdbc/SQLBlock.java +54 -0
- data/src/java/arjdbc/jdbc/WithResultSet.java +37 -0
- data/src/java/arjdbc/mssql/MSSQLModule.java +91 -0
- data/src/java/arjdbc/mssql/MSSQLRubyJdbcConnection.java +193 -0
- data/src/java/arjdbc/mysql/MySQLModule.java +140 -0
- data/src/java/arjdbc/mysql/MySQLRubyJdbcConnection.java +456 -0
- data/src/java/arjdbc/oracle/OracleModule.java +81 -0
- data/src/java/arjdbc/oracle/OracleRubyJdbcConnection.java +477 -0
- data/src/java/arjdbc/postgresql/ByteaUtils.java +171 -0
- data/src/java/arjdbc/postgresql/DriverImplementation.java +78 -0
- data/src/java/arjdbc/postgresql/PGDriverImplementation.java +535 -0
- data/src/java/arjdbc/postgresql/PostgreSQLModule.java +189 -0
- data/src/java/arjdbc/postgresql/PostgreSQLRubyJdbcConnection.java +489 -0
- data/src/java/arjdbc/sqlite3/SQLite3Module.java +93 -0
- data/src/java/arjdbc/sqlite3/SQLite3RubyJdbcConnection.java +405 -0
- data/src/java/arjdbc/util/CallResultSet.java +826 -0
- data/src/java/arjdbc/util/DateTimeUtils.java +517 -0
- data/src/java/arjdbc/util/NumberUtils.java +50 -0
- data/src/java/arjdbc/util/ObjectSupport.java +65 -0
- data/src/java/arjdbc/util/QuotingUtils.java +139 -0
- data/src/java/arjdbc/util/StringCache.java +60 -0
- data/src/java/arjdbc/util/StringHelper.java +155 -0
- metadata +288 -0
@@ -0,0 +1,77 @@
|
|
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.db2;
|
25
|
+
|
26
|
+
import static arjdbc.util.QuotingUtils.BYTES_0;
|
27
|
+
import static arjdbc.util.QuotingUtils.BYTES_1;
|
28
|
+
import static arjdbc.util.QuotingUtils.quoteSingleQuotesWithFallback;
|
29
|
+
|
30
|
+
import org.jruby.Ruby;
|
31
|
+
import org.jruby.RubyModule;
|
32
|
+
import org.jruby.RubyString;
|
33
|
+
import org.jruby.anno.JRubyMethod;
|
34
|
+
import org.jruby.runtime.ThreadContext;
|
35
|
+
import org.jruby.runtime.builtin.IRubyObject;
|
36
|
+
|
37
|
+
/**
|
38
|
+
* ArJdbc::DB2
|
39
|
+
*
|
40
|
+
* @author kares
|
41
|
+
*/
|
42
|
+
@org.jruby.anno.JRubyModule(name = "ArJdbc::DB2")
|
43
|
+
public class DB2Module {
|
44
|
+
|
45
|
+
public static RubyModule load(final RubyModule arJdbc) {
|
46
|
+
RubyModule db2 = arJdbc.defineModuleUnder("DB2");
|
47
|
+
db2.defineAnnotatedMethods( DB2Module.class );
|
48
|
+
return db2;
|
49
|
+
}
|
50
|
+
|
51
|
+
public static RubyModule load(final Ruby runtime) {
|
52
|
+
return load( arjdbc.ArJdbcModule.get(runtime) );
|
53
|
+
}
|
54
|
+
|
55
|
+
@JRubyMethod(name = "quote_string", required = 1, frame = false)
|
56
|
+
public static IRubyObject quote_string(
|
57
|
+
final ThreadContext context,
|
58
|
+
final IRubyObject self,
|
59
|
+
final IRubyObject string) {
|
60
|
+
return quoteSingleQuotesWithFallback(context, string);
|
61
|
+
}
|
62
|
+
|
63
|
+
@JRubyMethod(name = "quoted_true", required = 0, frame = false)
|
64
|
+
public static IRubyObject quoted_true(
|
65
|
+
final ThreadContext context,
|
66
|
+
final IRubyObject self) {
|
67
|
+
return RubyString.newString(context.runtime, BYTES_1);
|
68
|
+
}
|
69
|
+
|
70
|
+
@JRubyMethod(name = "quoted_false", required = 0, frame = false)
|
71
|
+
public static IRubyObject quoted_false(
|
72
|
+
final ThreadContext context,
|
73
|
+
final IRubyObject self) {
|
74
|
+
return RubyString.newString(context.runtime, BYTES_0);
|
75
|
+
}
|
76
|
+
|
77
|
+
}
|
@@ -0,0 +1,128 @@
|
|
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
|
+
* Copyright (c) 2008-2009 Thomas E Enebo <enebo@acm.org>
|
6
|
+
*
|
7
|
+
* Permission is hereby granted, free of charge, to any person obtaining
|
8
|
+
* a copy of this software and associated documentation files (the
|
9
|
+
* "Software"), to deal in the Software without restriction, including
|
10
|
+
* without limitation the rights to use, copy, modify, merge, publish,
|
11
|
+
* distribute, sublicense, and/or sell copies of the Software, and to
|
12
|
+
* permit persons to whom the Software is furnished to do so, subject to
|
13
|
+
* the following conditions:
|
14
|
+
*
|
15
|
+
* The above copyright notice and this permission notice shall be
|
16
|
+
* included in all copies or substantial portions of the Software.
|
17
|
+
*
|
18
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
19
|
+
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
20
|
+
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
21
|
+
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
22
|
+
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
23
|
+
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
24
|
+
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
25
|
+
***** END LICENSE BLOCK *****/
|
26
|
+
package arjdbc.db2;
|
27
|
+
|
28
|
+
import arjdbc.jdbc.Callable;
|
29
|
+
import arjdbc.jdbc.RubyJdbcConnection;
|
30
|
+
import arjdbc.util.StringHelper;
|
31
|
+
|
32
|
+
import java.sql.Connection;
|
33
|
+
import java.sql.PreparedStatement;
|
34
|
+
import java.sql.ResultSet;
|
35
|
+
import java.sql.SQLException;
|
36
|
+
|
37
|
+
import org.jruby.Ruby;
|
38
|
+
import org.jruby.RubyBoolean;
|
39
|
+
import org.jruby.RubyClass;
|
40
|
+
import org.jruby.RubyString;
|
41
|
+
import org.jruby.anno.JRubyMethod;
|
42
|
+
import org.jruby.runtime.ObjectAllocator;
|
43
|
+
import org.jruby.runtime.ThreadContext;
|
44
|
+
import org.jruby.runtime.builtin.IRubyObject;
|
45
|
+
import org.jruby.util.ByteList;
|
46
|
+
|
47
|
+
/**
|
48
|
+
*
|
49
|
+
* @author mikestone
|
50
|
+
*/
|
51
|
+
@org.jruby.anno.JRubyClass(name = "ActiveRecord::ConnectionAdapters::DB2JdbcConnection")
|
52
|
+
public class DB2RubyJdbcConnection extends RubyJdbcConnection {
|
53
|
+
private static final long serialVersionUID = 4175414189763614093L;
|
54
|
+
|
55
|
+
public DB2RubyJdbcConnection(Ruby runtime, RubyClass metaClass) {
|
56
|
+
super(runtime, metaClass);
|
57
|
+
}
|
58
|
+
|
59
|
+
public static RubyClass createDB2JdbcConnectionClass(Ruby runtime, RubyClass jdbcConnection) {
|
60
|
+
RubyClass clazz = getConnectionAdapters(runtime).
|
61
|
+
defineClassUnder("DB2JdbcConnection", jdbcConnection, ALLOCATOR);
|
62
|
+
clazz.defineAnnotatedMethods(DB2RubyJdbcConnection.class);
|
63
|
+
|
64
|
+
return clazz;
|
65
|
+
}
|
66
|
+
|
67
|
+
public static RubyClass load(final Ruby runtime) {
|
68
|
+
RubyClass jdbcConnection = getJdbcConnection(runtime);
|
69
|
+
return createDB2JdbcConnectionClass(runtime, jdbcConnection);
|
70
|
+
}
|
71
|
+
|
72
|
+
protected static ObjectAllocator ALLOCATOR = new ObjectAllocator() {
|
73
|
+
public IRubyObject allocate(Ruby runtime, RubyClass klass) {
|
74
|
+
return new DB2RubyJdbcConnection(runtime, klass);
|
75
|
+
}
|
76
|
+
};
|
77
|
+
|
78
|
+
@JRubyMethod(name = "select?", required = 1, meta = true, frame = false)
|
79
|
+
public static RubyBoolean select_p(final ThreadContext context,
|
80
|
+
final IRubyObject self, final IRubyObject sql) {
|
81
|
+
final RubyString sqlStr = sql.asString();
|
82
|
+
if ( isValues(sqlStr) ) return context.runtime.getTrue();
|
83
|
+
return arjdbc.jdbc.RubyJdbcConnection.select_p(context, self, sqlStr);
|
84
|
+
}
|
85
|
+
|
86
|
+
// DB2 supports 'stand-alone' VALUES expressions
|
87
|
+
private static final byte[] VALUES = new byte[]{ 'v','a','l','u', 'e', 's' };
|
88
|
+
|
89
|
+
private static boolean isValues(final RubyString sql) {
|
90
|
+
final ByteList sqlBytes = sql.getByteList();
|
91
|
+
return StringHelper.startsWithIgnoreCase(sqlBytes, VALUES);
|
92
|
+
}
|
93
|
+
|
94
|
+
private static final String[] TABLE_TYPES = new String[] {
|
95
|
+
"TABLE", "VIEW", "SYNONYM", "MATERIALIZED QUERY TABLE", "ALIAS"
|
96
|
+
};
|
97
|
+
|
98
|
+
@Override
|
99
|
+
protected String[] getTableTypes() {
|
100
|
+
return TABLE_TYPES;
|
101
|
+
}
|
102
|
+
|
103
|
+
@Override
|
104
|
+
protected boolean databaseSupportsSchemas() {
|
105
|
+
return true;
|
106
|
+
}
|
107
|
+
|
108
|
+
@JRubyMethod(name = {"identity_val_local", "last_insert_id"})
|
109
|
+
public IRubyObject identity_val_local(final ThreadContext context)
|
110
|
+
throws SQLException {
|
111
|
+
return withConnection(context, new Callable<IRubyObject>() {
|
112
|
+
public IRubyObject call(final Connection connection) throws SQLException {
|
113
|
+
PreparedStatement statement = null; ResultSet genKeys = null;
|
114
|
+
try {
|
115
|
+
statement = connection.prepareStatement("VALUES IDENTITY_VAL_LOCAL()");
|
116
|
+
genKeys = statement.executeQuery();
|
117
|
+
return doMapGeneratedKeys(context.runtime, genKeys, true);
|
118
|
+
}
|
119
|
+
catch (final SQLException e) {
|
120
|
+
debugMessage(context.runtime, "failed to get generated keys: ", e.getMessage());
|
121
|
+
throw e;
|
122
|
+
}
|
123
|
+
finally { close(genKeys); close(statement); }
|
124
|
+
}
|
125
|
+
});
|
126
|
+
}
|
127
|
+
|
128
|
+
}
|
@@ -0,0 +1,180 @@
|
|
1
|
+
/***** BEGIN LICENSE BLOCK *****
|
2
|
+
* Copyright (c) 2012-2013 Karol Bucek <self@kares.org>
|
3
|
+
* Copyright (c) 2006-2011 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.derby;
|
27
|
+
|
28
|
+
import static arjdbc.util.QuotingUtils.BYTES_0;
|
29
|
+
import static arjdbc.util.QuotingUtils.BYTES_1;
|
30
|
+
import static arjdbc.util.QuotingUtils.BYTES_SINGLE_Q_x2;
|
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
|
+
import org.jruby.util.ByteList;
|
39
|
+
|
40
|
+
@org.jruby.anno.JRubyModule(name = "ArJdbc::Derby")
|
41
|
+
public class DerbyModule {
|
42
|
+
|
43
|
+
public static RubyModule load(final RubyModule arJdbc) {
|
44
|
+
RubyModule derby = arJdbc.defineModuleUnder("Derby");
|
45
|
+
derby.defineAnnotatedMethods( DerbyModule.class );
|
46
|
+
RubyModule columnMethods = derby.defineModuleUnder("ColumnMethods");
|
47
|
+
columnMethods.defineAnnotatedMethods(Column.class);
|
48
|
+
return derby;
|
49
|
+
}
|
50
|
+
|
51
|
+
public static RubyModule load(final Ruby runtime) {
|
52
|
+
return load( arjdbc.ArJdbcModule.get(runtime) );
|
53
|
+
}
|
54
|
+
|
55
|
+
@org.jruby.anno.JRubyModule(name = "ArJdbc::Derby::ColumnMethods")
|
56
|
+
public static class Column {
|
57
|
+
|
58
|
+
@JRubyMethod(name = "type_cast", required = 1)
|
59
|
+
public static IRubyObject type_cast(final ThreadContext context,
|
60
|
+
final IRubyObject self, final IRubyObject value) {
|
61
|
+
|
62
|
+
if ( value.isNil() ||
|
63
|
+
( (value instanceof RubyString) && value.toString().trim().equalsIgnoreCase("null") ) ) {
|
64
|
+
return context.nil;
|
65
|
+
}
|
66
|
+
|
67
|
+
final String type = self.getInstanceVariables().getInstanceVariable("@type").toString();
|
68
|
+
|
69
|
+
switch (type.charAt(0)) {
|
70
|
+
case 's': //string
|
71
|
+
return value;
|
72
|
+
case 't': //text, timestamp, time
|
73
|
+
if ( type.equals("time") ) {
|
74
|
+
return self.getMetaClass().callMethod(context, "string_to_dummy_time", value);
|
75
|
+
}
|
76
|
+
if ( type.equals("timestamp") ) {
|
77
|
+
return self.getMetaClass().callMethod(context, "string_to_time", value);
|
78
|
+
}
|
79
|
+
return value; // text
|
80
|
+
case 'i': //integer
|
81
|
+
case 'p': //primary key
|
82
|
+
if ( value.respondsTo("to_i") ) {
|
83
|
+
return value.callMethod(context, "to_i");
|
84
|
+
}
|
85
|
+
return context.runtime.newFixnum( value.isTrue() ? 1 : 0 );
|
86
|
+
case 'd': //decimal, datetime, date
|
87
|
+
if ( type.equals("datetime") ) {
|
88
|
+
return self.getMetaClass().callMethod(context, "string_to_time", value);
|
89
|
+
}
|
90
|
+
if ( type.equals("date") ) {
|
91
|
+
return self.getMetaClass().callMethod(context, "string_to_date", value);
|
92
|
+
}
|
93
|
+
return self.getMetaClass().callMethod(context, "value_to_decimal", value);
|
94
|
+
case 'f': //float
|
95
|
+
return value.callMethod(context, "to_f");
|
96
|
+
case 'b': //binary, boolean
|
97
|
+
return type.equals("binary") ?
|
98
|
+
self.getMetaClass().callMethod(context, "binary_to_string", value) :
|
99
|
+
self.getMetaClass().callMethod(context, "value_to_boolean", value) ;
|
100
|
+
}
|
101
|
+
return value;
|
102
|
+
}
|
103
|
+
|
104
|
+
}
|
105
|
+
|
106
|
+
@JRubyMethod(name = "quote_binary", required = 1)
|
107
|
+
public static IRubyObject quote_binary(final ThreadContext context,
|
108
|
+
final IRubyObject self, final IRubyObject string) {
|
109
|
+
final byte[] empty = ByteList.NULL_ARRAY; // ""
|
110
|
+
return quoteStringHex(context.runtime, empty, string, empty);
|
111
|
+
}
|
112
|
+
|
113
|
+
private final static byte[] HEX = {'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'};
|
114
|
+
|
115
|
+
private static RubyString quoteStringHex(final Ruby runtime,
|
116
|
+
final byte[] before, final IRubyObject string, final byte[] after) {
|
117
|
+
|
118
|
+
final ByteList input = ((RubyString) string).getByteList();
|
119
|
+
final int size = input.getRealSize();
|
120
|
+
final ByteList output = new ByteList( before.length + size * 2 + after.length );
|
121
|
+
output.append( before );
|
122
|
+
|
123
|
+
final byte[] inputBytes = input.unsafeBytes();
|
124
|
+
|
125
|
+
int written = 0;
|
126
|
+
for (int i = input.getBegin(); i < input.getBegin() + size; i++) {
|
127
|
+
final byte b = inputBytes[i];
|
128
|
+
byte h = HEX[ ( ((char) b) >> 4 ) % 16 ];
|
129
|
+
byte l = HEX[ ( (char) b ) % 16 ];
|
130
|
+
output.append(h).append(l);
|
131
|
+
written += 2;
|
132
|
+
if ( written >= 16334 ) { // max hex length = 16334
|
133
|
+
output.append("'||X'".getBytes());
|
134
|
+
written = 0;
|
135
|
+
}
|
136
|
+
}
|
137
|
+
|
138
|
+
output.append( after );
|
139
|
+
return RubyString.newString(runtime, output);
|
140
|
+
}
|
141
|
+
|
142
|
+
@JRubyMethod(name = "quote_string", required = 1)
|
143
|
+
public static IRubyObject quote_string(final IRubyObject self, IRubyObject string) {
|
144
|
+
if ( ! ( string instanceof RubyString ) ) {
|
145
|
+
string = string.asString(); // e.g. Multibyte::Chars
|
146
|
+
}
|
147
|
+
|
148
|
+
ByteList bytes = ((RubyString) string).getByteList();
|
149
|
+
|
150
|
+
boolean newBytes = false;
|
151
|
+
for ( int i = 0; i < bytes.length(); i++ ) {
|
152
|
+
switch ( bytes.get(i) ) {
|
153
|
+
case '\'': break;
|
154
|
+
default: continue;
|
155
|
+
}
|
156
|
+
// on first replacement allocate so we don't manip original
|
157
|
+
if ( ! newBytes ) {
|
158
|
+
bytes = new ByteList(bytes);
|
159
|
+
newBytes = true;
|
160
|
+
}
|
161
|
+
bytes.replace(i, 1, BYTES_SINGLE_Q_x2);
|
162
|
+
i += 1;
|
163
|
+
}
|
164
|
+
|
165
|
+
return newBytes ? RubyString.newString(self.getRuntime(), bytes) : string;
|
166
|
+
}
|
167
|
+
|
168
|
+
@JRubyMethod(name = "quoted_true", required = 0, frame = false)
|
169
|
+
public static RubyString quoted_true(
|
170
|
+
final ThreadContext context, final IRubyObject self) {
|
171
|
+
return RubyString.newStringShared(context.runtime, BYTES_1);
|
172
|
+
}
|
173
|
+
|
174
|
+
@JRubyMethod(name = "quoted_false", required = 0, frame = false)
|
175
|
+
public static RubyString quoted_false(
|
176
|
+
final ThreadContext context, final IRubyObject self) {
|
177
|
+
return RubyString.newStringShared(context.runtime, BYTES_0);
|
178
|
+
}
|
179
|
+
|
180
|
+
}
|
@@ -0,0 +1,153 @@
|
|
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.derby;
|
25
|
+
|
26
|
+
import arjdbc.jdbc.Callable;
|
27
|
+
import arjdbc.jdbc.DriverWrapper;
|
28
|
+
import arjdbc.jdbc.RubyJdbcConnection;
|
29
|
+
|
30
|
+
import java.sql.Connection;
|
31
|
+
import java.sql.PreparedStatement;
|
32
|
+
import java.sql.ResultSet;
|
33
|
+
import java.sql.SQLException;
|
34
|
+
|
35
|
+
import org.jruby.Ruby;
|
36
|
+
import org.jruby.RubyBoolean;
|
37
|
+
import org.jruby.RubyClass;
|
38
|
+
import org.jruby.RubyString;
|
39
|
+
import org.jruby.anno.JRubyMethod;
|
40
|
+
import org.jruby.exceptions.RaiseException;
|
41
|
+
import org.jruby.runtime.ObjectAllocator;
|
42
|
+
import org.jruby.runtime.ThreadContext;
|
43
|
+
import org.jruby.runtime.builtin.IRubyObject;
|
44
|
+
import org.jruby.util.ByteList;
|
45
|
+
|
46
|
+
/**
|
47
|
+
* ArJdbc::DerbyJdbcConnection
|
48
|
+
*
|
49
|
+
* @author kares
|
50
|
+
*/
|
51
|
+
@org.jruby.anno.JRubyClass(name = "ActiveRecord::ConnectionAdapters::DerbyJdbcConnection")
|
52
|
+
public class DerbyRubyJdbcConnection extends RubyJdbcConnection {
|
53
|
+
private static final long serialVersionUID = 4809475910953623325L;
|
54
|
+
|
55
|
+
public DerbyRubyJdbcConnection(Ruby runtime, RubyClass metaClass) {
|
56
|
+
super(runtime, metaClass);
|
57
|
+
}
|
58
|
+
|
59
|
+
public static RubyClass createDerbyJdbcConnectionClass(Ruby runtime, RubyClass jdbcConnection) {
|
60
|
+
final RubyClass clazz = getConnectionAdapters(runtime). // ActiveRecord::ConnectionAdapters
|
61
|
+
defineClassUnder("DerbyJdbcConnection", jdbcConnection, ALLOCATOR);
|
62
|
+
clazz.defineAnnotatedMethods(DerbyRubyJdbcConnection.class);
|
63
|
+
return clazz;
|
64
|
+
}
|
65
|
+
|
66
|
+
public static RubyClass load(final Ruby runtime) {
|
67
|
+
RubyClass jdbcConnection = getJdbcConnection(runtime);
|
68
|
+
return createDerbyJdbcConnectionClass(runtime, jdbcConnection);
|
69
|
+
}
|
70
|
+
|
71
|
+
protected static ObjectAllocator ALLOCATOR = new ObjectAllocator() {
|
72
|
+
public IRubyObject allocate(Ruby runtime, RubyClass klass) {
|
73
|
+
return new DerbyRubyJdbcConnection(runtime, klass);
|
74
|
+
}
|
75
|
+
};
|
76
|
+
|
77
|
+
@Override
|
78
|
+
protected DriverWrapper newDriverWrapper(final ThreadContext context, final String driver) {
|
79
|
+
DriverWrapper driverWrapper = super.newDriverWrapper(context, driver);
|
80
|
+
|
81
|
+
final java.sql.Driver jdbcDriver = driverWrapper.getDriverInstance();
|
82
|
+
if ( jdbcDriver.getClass().getName().startsWith("org.apache.derby.") ) {
|
83
|
+
final int major = jdbcDriver.getMajorVersion();
|
84
|
+
final int minor = jdbcDriver.getMinorVersion();
|
85
|
+
if ( major < 10 || ( major == 10 && minor < 5 ) ) {
|
86
|
+
final RubyClass errorClass = getConnectionNotEstablished(context.runtime);
|
87
|
+
throw new RaiseException(context.runtime, errorClass,
|
88
|
+
"adapter requires Derby >= 10.5 got: " + major + "." + minor + "", false);
|
89
|
+
}
|
90
|
+
if ( major == 10 && minor < 8 ) { // 10.8 ~ supports JDBC 4.1
|
91
|
+
// config[:connection_alive_sql] ||= 'SELECT 1 FROM SYS.SYSSCHEMAS FETCH FIRST 1 ROWS ONLY'
|
92
|
+
setConfigValueIfNotSet(context, "connection_alive_sql", // FROM clause mandatory
|
93
|
+
context.runtime.newString("SELECT 1 FROM SYS.SYSSCHEMAS FETCH FIRST 1 ROWS ONLY"));
|
94
|
+
}
|
95
|
+
}
|
96
|
+
|
97
|
+
return driverWrapper;
|
98
|
+
}
|
99
|
+
|
100
|
+
@JRubyMethod(name = "select?", required = 1, meta = true, frame = false)
|
101
|
+
public static RubyBoolean select_p(final ThreadContext context,
|
102
|
+
final IRubyObject self, final IRubyObject sql) {
|
103
|
+
final RubyString sqlStr = sql.asString();
|
104
|
+
if ( isValues(sqlStr) ) return context.runtime.getTrue();
|
105
|
+
return arjdbc.jdbc.RubyJdbcConnection.select_p(context, self, sqlStr);
|
106
|
+
}
|
107
|
+
|
108
|
+
// Derby supports 'stand-alone' VALUES expressions
|
109
|
+
private static final byte[] VALUES = new byte[]{ 'v','a','l','u','e','s' };
|
110
|
+
|
111
|
+
private static boolean isValues(final RubyString sql) {
|
112
|
+
final ByteList sqlBytes = sql.getByteList();
|
113
|
+
return startsWithIgnoreCase(sqlBytes, VALUES);
|
114
|
+
}
|
115
|
+
|
116
|
+
@JRubyMethod(name = {"identity_val_local", "last_insert_id"})
|
117
|
+
public IRubyObject identity_val_local(final ThreadContext context)
|
118
|
+
throws SQLException {
|
119
|
+
return withConnection(context, new Callable<IRubyObject>() {
|
120
|
+
public IRubyObject call(final Connection connection) throws SQLException {
|
121
|
+
PreparedStatement statement = null; ResultSet genKeys = null;
|
122
|
+
try {
|
123
|
+
statement = connection.prepareStatement("values IDENTITY_VAL_LOCAL()");
|
124
|
+
genKeys = statement.executeQuery();
|
125
|
+
return doMapGeneratedKeys(context.runtime, genKeys, true);
|
126
|
+
}
|
127
|
+
catch (final SQLException e) {
|
128
|
+
debugMessage(context.runtime, "failed to get generated keys: ", e.getMessage());
|
129
|
+
throw e;
|
130
|
+
}
|
131
|
+
finally { close(genKeys); close(statement); }
|
132
|
+
}
|
133
|
+
});
|
134
|
+
}
|
135
|
+
|
136
|
+
@Override
|
137
|
+
protected boolean supportsGeneratedKeys(final Connection connection) throws SQLException {
|
138
|
+
return true; // driver reports false from supportsGetGeneratedKeys()
|
139
|
+
}
|
140
|
+
|
141
|
+
@Override
|
142
|
+
protected IRubyObject matchTables(final Ruby runtime,
|
143
|
+
final Connection connection,
|
144
|
+
final String catalog, String schemaPattern,
|
145
|
+
final String tablePattern, final String[] types,
|
146
|
+
final boolean checkExistsOnly) throws SQLException {
|
147
|
+
if (schemaPattern != null && schemaPattern.length() == 0) {
|
148
|
+
schemaPattern = null; // Derby doesn't like empty-string schema name
|
149
|
+
}
|
150
|
+
return super.matchTables(runtime, connection, catalog, schemaPattern, tablePattern, types, checkExistsOnly);
|
151
|
+
}
|
152
|
+
|
153
|
+
}
|