activerecord-jdbc-adapter-ficoh 1.3.21-java

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (191) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +35 -0
  3. data/.travis.yml +462 -0
  4. data/.yardopts +4 -0
  5. data/Appraisals +36 -0
  6. data/CONTRIBUTING.md +49 -0
  7. data/Gemfile +68 -0
  8. data/History.md +1191 -0
  9. data/LICENSE.txt +25 -0
  10. data/README.md +277 -0
  11. data/RUNNING_TESTS.md +88 -0
  12. data/Rakefile +298 -0
  13. data/Rakefile.jdbc +20 -0
  14. data/activerecord-jdbc-adapter.gemspec +63 -0
  15. data/lib/active_record/connection_adapters/as400_adapter.rb +2 -0
  16. data/lib/active_record/connection_adapters/db2_adapter.rb +1 -0
  17. data/lib/active_record/connection_adapters/derby_adapter.rb +1 -0
  18. data/lib/active_record/connection_adapters/firebird_adapter.rb +1 -0
  19. data/lib/active_record/connection_adapters/h2_adapter.rb +1 -0
  20. data/lib/active_record/connection_adapters/hsqldb_adapter.rb +1 -0
  21. data/lib/active_record/connection_adapters/informix_adapter.rb +1 -0
  22. data/lib/active_record/connection_adapters/jdbc_adapter.rb +1 -0
  23. data/lib/active_record/connection_adapters/jndi_adapter.rb +1 -0
  24. data/lib/active_record/connection_adapters/mariadb_adapter.rb +1 -0
  25. data/lib/active_record/connection_adapters/mssql_adapter.rb +1 -0
  26. data/lib/active_record/connection_adapters/mysql2_adapter.rb +1 -0
  27. data/lib/active_record/connection_adapters/mysql_adapter.rb +1 -0
  28. data/lib/active_record/connection_adapters/oracle_adapter.rb +1 -0
  29. data/lib/active_record/connection_adapters/postgresql_adapter.rb +1 -0
  30. data/lib/active_record/connection_adapters/sqlite3_adapter.rb +1 -0
  31. data/lib/active_record/connection_adapters/sqlserver_adapter.rb +1 -0
  32. data/lib/activerecord-jdbc-adapter.rb +1 -0
  33. data/lib/arel/visitors/compat.rb +64 -0
  34. data/lib/arel/visitors/db2.rb +137 -0
  35. data/lib/arel/visitors/derby.rb +112 -0
  36. data/lib/arel/visitors/firebird.rb +79 -0
  37. data/lib/arel/visitors/h2.rb +25 -0
  38. data/lib/arel/visitors/hsqldb.rb +32 -0
  39. data/lib/arel/visitors/postgresql_jdbc.rb +6 -0
  40. data/lib/arel/visitors/sql_server.rb +225 -0
  41. data/lib/arel/visitors/sql_server/ng42.rb +293 -0
  42. data/lib/arjdbc.rb +22 -0
  43. data/lib/arjdbc/db2.rb +4 -0
  44. data/lib/arjdbc/db2/adapter.rb +802 -0
  45. data/lib/arjdbc/db2/as400.rb +137 -0
  46. data/lib/arjdbc/db2/column.rb +177 -0
  47. data/lib/arjdbc/db2/connection_methods.rb +45 -0
  48. data/lib/arjdbc/derby.rb +3 -0
  49. data/lib/arjdbc/derby/active_record_patch.rb +13 -0
  50. data/lib/arjdbc/derby/adapter.rb +567 -0
  51. data/lib/arjdbc/derby/connection_methods.rb +16 -0
  52. data/lib/arjdbc/derby/schema_creation.rb +15 -0
  53. data/lib/arjdbc/discover.rb +104 -0
  54. data/lib/arjdbc/firebird.rb +4 -0
  55. data/lib/arjdbc/firebird/adapter.rb +468 -0
  56. data/lib/arjdbc/firebird/connection_methods.rb +20 -0
  57. data/lib/arjdbc/h2.rb +3 -0
  58. data/lib/arjdbc/h2/adapter.rb +335 -0
  59. data/lib/arjdbc/h2/connection_methods.rb +22 -0
  60. data/lib/arjdbc/hsqldb.rb +3 -0
  61. data/lib/arjdbc/hsqldb/adapter.rb +304 -0
  62. data/lib/arjdbc/hsqldb/connection_methods.rb +23 -0
  63. data/lib/arjdbc/hsqldb/explain_support.rb +35 -0
  64. data/lib/arjdbc/hsqldb/schema_creation.rb +11 -0
  65. data/lib/arjdbc/informix.rb +5 -0
  66. data/lib/arjdbc/informix/adapter.rb +160 -0
  67. data/lib/arjdbc/informix/connection_methods.rb +9 -0
  68. data/lib/arjdbc/jdbc.rb +62 -0
  69. data/lib/arjdbc/jdbc/adapter.rb +997 -0
  70. data/lib/arjdbc/jdbc/adapter_require.rb +46 -0
  71. data/lib/arjdbc/jdbc/arel_support.rb +149 -0
  72. data/lib/arjdbc/jdbc/base_ext.rb +34 -0
  73. data/lib/arjdbc/jdbc/callbacks.rb +52 -0
  74. data/lib/arjdbc/jdbc/column.rb +83 -0
  75. data/lib/arjdbc/jdbc/connection.rb +26 -0
  76. data/lib/arjdbc/jdbc/connection_methods.rb +59 -0
  77. data/lib/arjdbc/jdbc/driver.rb +44 -0
  78. data/lib/arjdbc/jdbc/error.rb +75 -0
  79. data/lib/arjdbc/jdbc/extension.rb +69 -0
  80. data/lib/arjdbc/jdbc/java.rb +13 -0
  81. data/lib/arjdbc/jdbc/type_cast.rb +154 -0
  82. data/lib/arjdbc/jdbc/type_converter.rb +142 -0
  83. data/lib/arjdbc/mssql.rb +7 -0
  84. data/lib/arjdbc/mssql/adapter.rb +822 -0
  85. data/lib/arjdbc/mssql/column.rb +207 -0
  86. data/lib/arjdbc/mssql/connection_methods.rb +72 -0
  87. data/lib/arjdbc/mssql/explain_support.rb +99 -0
  88. data/lib/arjdbc/mssql/limit_helpers.rb +231 -0
  89. data/lib/arjdbc/mssql/lock_methods.rb +77 -0
  90. data/lib/arjdbc/mssql/types.rb +343 -0
  91. data/lib/arjdbc/mssql/utils.rb +82 -0
  92. data/lib/arjdbc/mysql.rb +3 -0
  93. data/lib/arjdbc/mysql/adapter.rb +998 -0
  94. data/lib/arjdbc/mysql/bulk_change_table.rb +150 -0
  95. data/lib/arjdbc/mysql/column.rb +167 -0
  96. data/lib/arjdbc/mysql/connection_methods.rb +137 -0
  97. data/lib/arjdbc/mysql/explain_support.rb +82 -0
  98. data/lib/arjdbc/mysql/schema_creation.rb +58 -0
  99. data/lib/arjdbc/oracle.rb +4 -0
  100. data/lib/arjdbc/oracle/adapter.rb +968 -0
  101. data/lib/arjdbc/oracle/column.rb +136 -0
  102. data/lib/arjdbc/oracle/connection_methods.rb +21 -0
  103. data/lib/arjdbc/postgresql.rb +3 -0
  104. data/lib/arjdbc/postgresql/_bc_time_cast_patch.rb +21 -0
  105. data/lib/arjdbc/postgresql/adapter.rb +1498 -0
  106. data/lib/arjdbc/postgresql/base/array_parser.rb +95 -0
  107. data/lib/arjdbc/postgresql/base/oid.rb +412 -0
  108. data/lib/arjdbc/postgresql/base/pgconn.rb +8 -0
  109. data/lib/arjdbc/postgresql/base/schema_definitions.rb +132 -0
  110. data/lib/arjdbc/postgresql/column.rb +640 -0
  111. data/lib/arjdbc/postgresql/connection_methods.rb +44 -0
  112. data/lib/arjdbc/postgresql/explain_support.rb +53 -0
  113. data/lib/arjdbc/postgresql/oid/bytea.rb +3 -0
  114. data/lib/arjdbc/postgresql/oid_types.rb +265 -0
  115. data/lib/arjdbc/postgresql/schema_creation.rb +60 -0
  116. data/lib/arjdbc/railtie.rb +11 -0
  117. data/lib/arjdbc/sqlite3.rb +3 -0
  118. data/lib/arjdbc/sqlite3/adapter.rb +654 -0
  119. data/lib/arjdbc/sqlite3/connection_methods.rb +36 -0
  120. data/lib/arjdbc/sqlite3/explain_support.rb +29 -0
  121. data/lib/arjdbc/sybase.rb +2 -0
  122. data/lib/arjdbc/sybase/adapter.rb +47 -0
  123. data/lib/arjdbc/tasks.rb +13 -0
  124. data/lib/arjdbc/tasks/database_tasks.rb +66 -0
  125. data/lib/arjdbc/tasks/databases.rake +91 -0
  126. data/lib/arjdbc/tasks/databases3.rake +239 -0
  127. data/lib/arjdbc/tasks/databases4.rake +39 -0
  128. data/lib/arjdbc/tasks/db2_database_tasks.rb +104 -0
  129. data/lib/arjdbc/tasks/derby_database_tasks.rb +95 -0
  130. data/lib/arjdbc/tasks/h2_database_tasks.rb +31 -0
  131. data/lib/arjdbc/tasks/hsqldb_database_tasks.rb +70 -0
  132. data/lib/arjdbc/tasks/jdbc_database_tasks.rb +169 -0
  133. data/lib/arjdbc/tasks/mssql_database_tasks.rb +46 -0
  134. data/lib/arjdbc/tasks/oracle/enhanced_structure_dump.rb +297 -0
  135. data/lib/arjdbc/tasks/oracle_database_tasks.rb +65 -0
  136. data/lib/arjdbc/util/quoted_cache.rb +60 -0
  137. data/lib/arjdbc/util/serialized_attributes.rb +98 -0
  138. data/lib/arjdbc/util/table_copier.rb +108 -0
  139. data/lib/arjdbc/version.rb +8 -0
  140. data/lib/generators/jdbc/USAGE +9 -0
  141. data/lib/generators/jdbc/jdbc_generator.rb +17 -0
  142. data/pom.xml +285 -0
  143. data/rails_generators/jdbc_generator.rb +15 -0
  144. data/rails_generators/templates/config/initializers/jdbc.rb +10 -0
  145. data/rails_generators/templates/lib/tasks/jdbc.rake +11 -0
  146. data/rakelib/01-tomcat.rake +51 -0
  147. data/rakelib/02-test.rake +151 -0
  148. data/rakelib/bundler_ext.rb +11 -0
  149. data/rakelib/db.rake +58 -0
  150. data/rakelib/rails.rake +77 -0
  151. data/src/java/arjdbc/ArJdbcModule.java +288 -0
  152. data/src/java/arjdbc/db2/DB2Module.java +77 -0
  153. data/src/java/arjdbc/db2/DB2RubyJdbcConnection.java +128 -0
  154. data/src/java/arjdbc/derby/DerbyModule.java +180 -0
  155. data/src/java/arjdbc/derby/DerbyRubyJdbcConnection.java +153 -0
  156. data/src/java/arjdbc/firebird/FirebirdRubyJdbcConnection.java +190 -0
  157. data/src/java/arjdbc/h2/H2Module.java +50 -0
  158. data/src/java/arjdbc/h2/H2RubyJdbcConnection.java +86 -0
  159. data/src/java/arjdbc/hsqldb/HSQLDBModule.java +74 -0
  160. data/src/java/arjdbc/informix/InformixRubyJdbcConnection.java +76 -0
  161. data/src/java/arjdbc/jdbc/AdapterJavaService.java +43 -0
  162. data/src/java/arjdbc/jdbc/Callable.java +44 -0
  163. data/src/java/arjdbc/jdbc/ConnectionFactory.java +77 -0
  164. data/src/java/arjdbc/jdbc/DataSourceConnectionFactory.java +156 -0
  165. data/src/java/arjdbc/jdbc/DriverConnectionFactory.java +63 -0
  166. data/src/java/arjdbc/jdbc/DriverWrapper.java +128 -0
  167. data/src/java/arjdbc/jdbc/JdbcConnectionFactory.java +32 -0
  168. data/src/java/arjdbc/jdbc/RubyJdbcConnection.java +4541 -0
  169. data/src/java/arjdbc/jdbc/SQLBlock.java +54 -0
  170. data/src/java/arjdbc/jdbc/WithResultSet.java +37 -0
  171. data/src/java/arjdbc/mssql/MSSQLModule.java +91 -0
  172. data/src/java/arjdbc/mssql/MSSQLRubyJdbcConnection.java +193 -0
  173. data/src/java/arjdbc/mysql/MySQLModule.java +140 -0
  174. data/src/java/arjdbc/mysql/MySQLRubyJdbcConnection.java +456 -0
  175. data/src/java/arjdbc/oracle/OracleModule.java +81 -0
  176. data/src/java/arjdbc/oracle/OracleRubyJdbcConnection.java +477 -0
  177. data/src/java/arjdbc/postgresql/ByteaUtils.java +171 -0
  178. data/src/java/arjdbc/postgresql/DriverImplementation.java +78 -0
  179. data/src/java/arjdbc/postgresql/PGDriverImplementation.java +535 -0
  180. data/src/java/arjdbc/postgresql/PostgreSQLModule.java +189 -0
  181. data/src/java/arjdbc/postgresql/PostgreSQLRubyJdbcConnection.java +489 -0
  182. data/src/java/arjdbc/sqlite3/SQLite3Module.java +93 -0
  183. data/src/java/arjdbc/sqlite3/SQLite3RubyJdbcConnection.java +405 -0
  184. data/src/java/arjdbc/util/CallResultSet.java +826 -0
  185. data/src/java/arjdbc/util/DateTimeUtils.java +517 -0
  186. data/src/java/arjdbc/util/NumberUtils.java +50 -0
  187. data/src/java/arjdbc/util/ObjectSupport.java +65 -0
  188. data/src/java/arjdbc/util/QuotingUtils.java +139 -0
  189. data/src/java/arjdbc/util/StringCache.java +60 -0
  190. data/src/java/arjdbc/util/StringHelper.java +155 -0
  191. metadata +288 -0
@@ -0,0 +1,190 @@
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 Object value,
77
+ final IRubyObject column, final int type) throws SQLException {
78
+ if ( value instanceof IRubyObject ) {
79
+ setBooleanParameter(context, connection, statement, index, (IRubyObject) value, column, type);
80
+ }
81
+ else {
82
+ if ( value == null ) statement.setNull(index, Types.CHAR);
83
+ else {
84
+ statement.setBoolean(index, ((Boolean) value).booleanValue());
85
+ }
86
+ }
87
+ }
88
+
89
+ @Override // booleans are emulated can not setNull(index, Types.BOOLEAN)
90
+ protected void setBooleanParameter(final ThreadContext context,
91
+ final Connection connection, final PreparedStatement statement,
92
+ final int index, final IRubyObject value,
93
+ final IRubyObject column, final int type) throws SQLException {
94
+ if ( value.isNil() ) statement.setNull(index, Types.CHAR);
95
+ else {
96
+ statement.setBoolean(index, value.isTrue());
97
+ }
98
+ }
99
+
100
+ protected IRubyObject jdbcToRuby(
101
+ final ThreadContext context, final Ruby runtime,
102
+ final int column, final int type, final ResultSet resultSet)
103
+ throws SQLException {
104
+
105
+ switch (type) {
106
+ case SMALL_CHAR_1:
107
+ return smallChar1ToRuby(runtime, resultSet, column);
108
+ case SMALL_CHAR_2:
109
+ return smallChar2ToRuby(runtime, resultSet, column);
110
+ }
111
+ return super.jdbcToRuby(context, runtime, column, type, resultSet);
112
+ }
113
+
114
+ private static IRubyObject smallChar1ToRuby(
115
+ final Ruby runtime, final ResultSet resultSet, final int column)
116
+ throws SQLException {
117
+ String value = resultSet.getString(column);
118
+ if ( value == null ) return runtime.getNil();
119
+ if ( value.length() > 1 && value.charAt(1) == ' ' ) {
120
+ value = value.substring(0, 1);
121
+ }
122
+ return RubyString.newUnicodeString(runtime, value);
123
+ }
124
+
125
+ private static IRubyObject smallChar2ToRuby(
126
+ final Ruby runtime, final ResultSet resultSet, final int column)
127
+ throws SQLException {
128
+ String value = resultSet.getString(column);
129
+ if ( value == null ) return runtime.getNil();
130
+ if ( value.length() > 2 && value.charAt(2) == ' ' ) {
131
+ value = value.substring(0, 2);
132
+ }
133
+ return RubyString.newUnicodeString(runtime, value);
134
+ }
135
+
136
+ private final static int SMALL_CHAR_1 = 31431001;
137
+ private final static int SMALL_CHAR_2 = 31431002;
138
+
139
+ @Override
140
+ protected ColumnData[] extractColumns(final Ruby runtime,
141
+ final Connection connection, final ResultSet resultSet,
142
+ final boolean downCase) throws SQLException {
143
+
144
+ final ResultSetMetaData resultMetaData = resultSet.getMetaData();
145
+
146
+ final int columnCount = resultMetaData.getColumnCount();
147
+ final ColumnData[] columns = new ColumnData[columnCount];
148
+
149
+ for ( int i = 1; i <= columnCount; i++ ) { // metadata is one-based
150
+ String name = resultMetaData.getColumnLabel(i);
151
+ if ( downCase ) {
152
+ name = name.toLowerCase();
153
+ } else {
154
+ name = caseConvertIdentifierForRails(connection, name);
155
+ }
156
+ final RubyString columnName = RubyString.newUnicodeString(runtime, name);
157
+
158
+ int columnType = resultMetaData.getColumnType(i);
159
+ if (columnType == Types.CHAR) {
160
+ // CHAR(1) 'aligned' by JayBird to "1 "
161
+ final int prec = resultMetaData.getPrecision(i);
162
+ if ( prec == 1 ) {
163
+ columnType = SMALL_CHAR_1;
164
+ }
165
+ else if ( prec == 2 ) {
166
+ columnType = SMALL_CHAR_2;
167
+ }
168
+ }
169
+
170
+ columns[i - 1] = new ColumnData(columnName, columnType, i);
171
+ }
172
+
173
+ return columns;
174
+ }
175
+
176
+ // storesMixedCaseIdentifiers() return false;
177
+ // storesLowerCaseIdentifiers() return false;
178
+ // storesUpperCaseIdentifiers() return true;
179
+
180
+ @Override
181
+ protected String caseConvertIdentifierForRails(final Connection connection, final String value) {
182
+ return value == null ? null : value.toLowerCase();
183
+ }
184
+
185
+ @Override
186
+ protected String caseConvertIdentifierForJdbc(final Connection connection, final String value) {
187
+ return value == null ? null : value.toUpperCase();
188
+ }
189
+
190
+ }
@@ -0,0 +1,50 @@
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.h2;
27
+
28
+ import org.jruby.Ruby;
29
+ import org.jruby.RubyModule;
30
+
31
+ /**
32
+ * ArJdbc::H2
33
+ *
34
+ * @author kares
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
+
50
+ }
@@ -0,0 +1,86 @@
1
+ /***** BEGIN LICENSE BLOCK *****
2
+ * Copyright (c) 2006-2010 Nick Sieger <nick@nicksieger.com>
3
+ * Copyright (c) 2006-2007 Ola Bini <ola.bini@gmail.com>
4
+ * Copyright (c) 2008-2009 Thomas E Enebo <enebo@acm.org>
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.h2;
27
+
28
+ import java.sql.Connection;
29
+ import java.sql.SQLException;
30
+
31
+ import org.jruby.Ruby;
32
+ import org.jruby.RubyClass;
33
+ import org.jruby.runtime.ObjectAllocator;
34
+ import org.jruby.runtime.builtin.IRubyObject;
35
+
36
+ /**
37
+ *
38
+ * @author nicksieger
39
+ */
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) {
45
+ super(runtime, metaClass);
46
+ }
47
+
48
+ public static RubyClass createH2JdbcConnectionClass(Ruby runtime, RubyClass jdbcConnection) {
49
+ RubyClass clazz = getConnectionAdapters(runtime).
50
+ defineClassUnder("H2JdbcConnection", jdbcConnection, ALLOCATOR);
51
+ clazz.defineAnnotatedMethods(H2RubyJdbcConnection.class);
52
+ return clazz;
53
+ }
54
+
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() {
61
+ public IRubyObject allocate(Ruby runtime, RubyClass klass) {
62
+ return new H2RubyJdbcConnection(runtime, klass);
63
+ }
64
+ };
65
+
66
+ /**
67
+ * H2 supports schemas.
68
+ */
69
+ @Override
70
+ protected boolean databaseSupportsSchemas() {
71
+ return true;
72
+ }
73
+
74
+ @Override
75
+ protected String caseConvertIdentifierForJdbc(final Connection connection, final String value)
76
+ throws SQLException {
77
+ if ( value == null ) return null;
78
+ return value.toUpperCase();
79
+ }
80
+
81
+ // NOTE: not supported
82
+ // org.h2.jdbc.JdbcSQLException: Hexadecimal string contains non-hex character: "PUBLIC" [90004-178]
83
+ //@Override
84
+ //protected boolean useByteStrings() { return false; }
85
+
86
+ }
@@ -0,0 +1,74 @@
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
+ @org.jruby.anno.JRubyModule(name = "ArJdbc::HSQLDB")
40
+ public class HSQLDBModule {
41
+
42
+ public static RubyModule load(final RubyModule arJdbc) {
43
+ RubyModule hsqldb = arJdbc.defineModuleUnder("HSQLDB");
44
+ hsqldb.defineAnnotatedMethods( HSQLDBModule.class );
45
+ return hsqldb;
46
+ }
47
+
48
+ public static RubyModule load(final Ruby runtime) {
49
+ return load( arjdbc.ArJdbcModule.get(runtime) );
50
+ }
51
+
52
+ @JRubyMethod(name = "quote_string", required = 1, frame = false)
53
+ public static IRubyObject quote_string(
54
+ final ThreadContext context,
55
+ final IRubyObject self,
56
+ final IRubyObject string) {
57
+ return quoteSingleQuotesWithFallback(context, string);
58
+ }
59
+
60
+ @JRubyMethod(name = "quoted_true", required = 0, frame = false)
61
+ public static IRubyObject quoted_true(
62
+ final ThreadContext context,
63
+ final IRubyObject self) {
64
+ return RubyString.newString(context.runtime, BYTES_1);
65
+ }
66
+
67
+ @JRubyMethod(name = "quoted_false", required = 0, frame = false)
68
+ public static IRubyObject quoted_false(
69
+ final ThreadContext context,
70
+ final IRubyObject self) {
71
+ return RubyString.newString(context.runtime, BYTES_0);
72
+ }
73
+
74
+ }
@@ -0,0 +1,76 @@
1
+ /*
2
+ **** BEGIN LICENSE BLOCK *****
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
+
27
+ package arjdbc.informix;
28
+
29
+ import java.sql.ResultSet;
30
+ import java.sql.SQLException;
31
+ import java.sql.Types;
32
+
33
+ import arjdbc.jdbc.RubyJdbcConnection;
34
+
35
+ import org.jruby.Ruby;
36
+ import org.jruby.RubyClass;
37
+ import org.jruby.runtime.ObjectAllocator;
38
+ import org.jruby.runtime.ThreadContext;
39
+ import org.jruby.runtime.builtin.IRubyObject;
40
+
41
+ /**
42
+ *
43
+ * @author nicksieger
44
+ */
45
+ //@org.jruby.anno.JRubyClass(name = "ActiveRecord::ConnectionAdapters::InformixJdbcConnection")
46
+ public class InformixRubyJdbcConnection extends RubyJdbcConnection {
47
+ protected InformixRubyJdbcConnection(Ruby runtime, RubyClass metaClass) {
48
+ super(runtime, metaClass);
49
+ }
50
+
51
+ public static RubyClass createInformixJdbcConnectionClass(Ruby runtime, RubyClass jdbcConnection) {
52
+ RubyClass clazz = RubyJdbcConnection.getConnectionAdapters(runtime).defineClassUnder("InformixJdbcConnection",
53
+ jdbcConnection, INFORMIX_JDBCCONNECTION_ALLOCATOR);
54
+ clazz.defineAnnotatedMethods(InformixRubyJdbcConnection.class);
55
+
56
+ return clazz;
57
+ }
58
+
59
+ private static ObjectAllocator INFORMIX_JDBCCONNECTION_ALLOCATOR = new ObjectAllocator() {
60
+ public IRubyObject allocate(Ruby runtime, RubyClass klass) {
61
+ return new InformixRubyJdbcConnection(runtime, klass);
62
+ }
63
+ };
64
+
65
+ /**
66
+ * Treat LONGVARCHAR as CLOB on Informix for purposes of converting a JDBC value to Ruby.
67
+ */
68
+ @Override
69
+ protected IRubyObject jdbcToRuby(
70
+ final ThreadContext context, final Ruby runtime,
71
+ final int column, int type, final ResultSet resultSet)
72
+ throws SQLException {
73
+ if ( type == Types.LONGVARCHAR ) type = Types.CLOB;
74
+ return super.jdbcToRuby(context, runtime, column, type, resultSet);
75
+ }
76
+ }