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,54 @@
1
+ /***** BEGIN LICENSE BLOCK *****
2
+ * Copyright (c) 2012-2015 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
+
27
+ package arjdbc.jdbc;
28
+
29
+ import java.sql.Connection;
30
+ import java.sql.ResultSet;
31
+ import java.sql.SQLException;
32
+ import java.sql.Statement;
33
+
34
+ /**
35
+ * @deprecated implement a {@link Callable} directly instead.
36
+ *
37
+ * @author nicksieger
38
+ */
39
+ @Deprecated
40
+ public abstract class SQLBlock implements Callable {
41
+
42
+ /**
43
+ * @see Callable#call(Connection)
44
+ */
45
+ public abstract Object call(final Connection connection) throws SQLException;
46
+
47
+ public void close(Statement statement) {
48
+ RubyJdbcConnection.close(statement);
49
+ }
50
+
51
+ public void close(ResultSet resultSet) {
52
+ RubyJdbcConnection.close(resultSet);
53
+ }
54
+ }
@@ -0,0 +1,37 @@
1
+ /*
2
+ * The MIT License
3
+ *
4
+ * Copyright (c) 2014-2015 Karol Bucek <self@kares.org>
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.ResultSet;
27
+ import java.sql.SQLException;
28
+
29
+ /**
30
+ *
31
+ * @author kares
32
+ */
33
+ public interface WithResultSet<T> {
34
+
35
+ T call(final ResultSet resultSet) throws SQLException ;
36
+
37
+ }
@@ -0,0 +1,91 @@
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.mssql;
25
+
26
+ import static arjdbc.util.QuotingUtils.BYTES_0;
27
+ import static arjdbc.util.QuotingUtils.BYTES_1;
28
+ import static arjdbc.util.QuotingUtils.quoteCharAndDecorateWith;
29
+ import static arjdbc.util.QuotingUtils.quoteSingleQuotesWithFallback;
30
+
31
+ import org.jruby.Ruby;
32
+ import org.jruby.RubyModule;
33
+ import org.jruby.RubyString;
34
+ import org.jruby.anno.JRubyMethod;
35
+ import org.jruby.runtime.ThreadContext;
36
+ import org.jruby.runtime.Visibility;
37
+ import org.jruby.runtime.builtin.IRubyObject;
38
+ import org.jruby.util.ByteList;
39
+
40
+ /**
41
+ * ArJdbc::MSSQL
42
+ *
43
+ * @author kares
44
+ */
45
+ @org.jruby.anno.JRubyModule(name = "ArJdbc::MSSQL")
46
+ public class MSSQLModule {
47
+
48
+ public static RubyModule load(final RubyModule arJdbc) {
49
+ RubyModule mssql = arJdbc.defineModuleUnder("MSSQL");
50
+ mssql.defineAnnotatedMethods( MSSQLModule.class );
51
+ return mssql;
52
+ }
53
+
54
+ public static RubyModule load(final Ruby runtime) {
55
+ return load( arjdbc.ArJdbcModule.get(runtime) );
56
+ }
57
+
58
+ @JRubyMethod(name = "quote_string", required = 1)
59
+ public static IRubyObject quote_string(final ThreadContext context,
60
+ final IRubyObject self, final IRubyObject string) {
61
+ return quoteSingleQuotesWithFallback(context, string);
62
+ }
63
+
64
+ @JRubyMethod(name = "quoted_true", required = 0)
65
+ public static IRubyObject quoted_true(final ThreadContext context,
66
+ final IRubyObject self) {
67
+ return RubyString.newString(context.runtime, BYTES_1);
68
+ }
69
+
70
+ @JRubyMethod(name = "quoted_false", required = 0)
71
+ public static IRubyObject quoted_false(final ThreadContext context,
72
+ final IRubyObject self) {
73
+ return RubyString.newString(context.runtime, BYTES_0);
74
+ }
75
+
76
+ // part =~ /^\[.*\]$/ ? part : "[#{part.gsub(']', ']]')}]"
77
+ @SuppressWarnings("deprecation")
78
+ @JRubyMethod(required = 1, visibility = Visibility.PRIVATE)
79
+ public static IRubyObject quote_name_part(final ThreadContext context,
80
+ final IRubyObject self, final IRubyObject part) {
81
+
82
+ final RubyString partString = (RubyString) part;
83
+ final ByteList str = partString.getByteList();
84
+ if ( str.charAt(0) == '[' && str.charAt(str.length() - 1) == ']' ) {
85
+ return part; // part =~ /^\[.*\]$/ ? part
86
+ }
87
+
88
+ return quoteCharAndDecorateWith(context, partString, ']', ']', (byte) '[', (byte) ']');
89
+ }
90
+
91
+ }
@@ -0,0 +1,193 @@
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.mssql;
27
+
28
+ import arjdbc.jdbc.Callable;
29
+ import arjdbc.jdbc.RubyJdbcConnection;
30
+
31
+ import java.sql.Connection;
32
+ import java.sql.DatabaseMetaData;
33
+ import java.sql.ResultSet;
34
+ import java.sql.SQLException;
35
+ import java.sql.Types;
36
+
37
+ import org.jruby.Ruby;
38
+ import org.jruby.RubyArray;
39
+ import org.jruby.RubyBoolean;
40
+ import org.jruby.RubyClass;
41
+ import org.jruby.RubyString;
42
+ import org.jruby.anno.JRubyMethod;
43
+ import org.jruby.runtime.ObjectAllocator;
44
+ import org.jruby.runtime.ThreadContext;
45
+ import org.jruby.runtime.builtin.IRubyObject;
46
+ import org.jruby.util.ByteList;
47
+
48
+ /**
49
+ *
50
+ * @author nicksieger
51
+ */
52
+ //@org.jruby.anno.JRubyClass(name = "ActiveRecord::ConnectionAdapters::MSSQLJdbcConnection")
53
+ public class MSSQLRubyJdbcConnection extends RubyJdbcConnection {
54
+ private static final long serialVersionUID = -745716565005219263L;
55
+
56
+ public MSSQLRubyJdbcConnection(Ruby runtime, RubyClass metaClass) {
57
+ super(runtime, metaClass);
58
+ }
59
+
60
+ public static RubyClass createMSSQLJdbcConnectionClass(Ruby runtime, RubyClass jdbcConnection) {
61
+ final RubyClass clazz = getConnectionAdapters(runtime). // ActiveRecord::ConnectionAdapters
62
+ defineClassUnder("MSSQLJdbcConnection", jdbcConnection, ALLOCATOR);
63
+ clazz.defineAnnotatedMethods(MSSQLRubyJdbcConnection.class);
64
+ return clazz;
65
+ }
66
+
67
+ public static RubyClass load(final Ruby runtime) {
68
+ RubyClass jdbcConnection = getJdbcConnection(runtime);
69
+ return createMSSQLJdbcConnectionClass(runtime, jdbcConnection);
70
+ }
71
+
72
+ private static final ObjectAllocator ALLOCATOR = new ObjectAllocator() {
73
+ public IRubyObject allocate(Ruby runtime, RubyClass klass) {
74
+ return new MSSQLRubyJdbcConnection(runtime, klass);
75
+ }
76
+ };
77
+
78
+ private static final byte[] EXEC = new byte[] { 'e', 'x', 'e', 'c' };
79
+
80
+ @JRubyMethod(name = "exec?", required = 1, meta = true, frame = false)
81
+ public static RubyBoolean exec_p(ThreadContext context, IRubyObject self, IRubyObject sql) {
82
+ final ByteList sqlBytes = sql.asString().getByteList();
83
+ return context.runtime.newBoolean( startsWithIgnoreCase(sqlBytes, EXEC) );
84
+ }
85
+
86
+ @Override
87
+ protected RubyArray mapTables(final Ruby runtime, final DatabaseMetaData metaData,
88
+ final String catalog, final String schemaPattern, final String tablePattern,
89
+ final ResultSet tablesSet) throws SQLException, IllegalStateException {
90
+
91
+ final RubyArray tables = runtime.newArray();
92
+
93
+ while ( tablesSet.next() ) {
94
+ String schema = tablesSet.getString(TABLES_TABLE_SCHEM);
95
+ if ( schema != null ) schema = schema.toLowerCase();
96
+ // Under MS-SQL, don't return system tables/views unless explicitly asked for :
97
+ if ( schemaPattern == null &&
98
+ ( "sys".equals(schema) || "information_schema".equals(schema) ) ) {
99
+ continue;
100
+ }
101
+ String name = tablesSet.getString(TABLES_TABLE_NAME);
102
+ if ( name == null ) {
103
+ // NOTE: seems there's a jTDS but when doing getColumns while
104
+ // EXPLAIN is on (e.g. `SET SHOWPLAN_TEXT ON`) not returning
105
+ // correct result set with table info (null NAME, invalid CAT)
106
+ throw new IllegalStateException("got null name while matching table(s): [" +
107
+ catalog + "." + schemaPattern + "." + tablePattern + "] check " +
108
+ "if this happened during EXPLAIN (SET SHOWPLAN_TEXT ON) if so please try " +
109
+ "turning it off using the system property 'arjdbc.mssql.explain_support.disabled=true' " +
110
+ "or programatically by changing: `ArJdbc::MSSQL::ExplainSupport::DISABLED`");
111
+ }
112
+ name = caseConvertIdentifierForRails(metaData, name);
113
+ tables.add(RubyString.newUnicodeString(runtime, name));
114
+ }
115
+ return tables;
116
+ }
117
+
118
+ @Override
119
+ protected RubyArray mapColumnsResult(final ThreadContext context,
120
+ final DatabaseMetaData metaData, final TableName components, final ResultSet results)
121
+ throws SQLException {
122
+
123
+ final RubyClass Column = getJdbcColumnClass(context);
124
+ final boolean lookupCastType = Column.isMethodBound("cast_type", false);
125
+ // NOTE: MSSQL depends on Column#primary? no matter the AR version - thus always set @primary
126
+ return mapColumnsResult(context, metaData, components, results, Column, lookupCastType, true);
127
+ }
128
+
129
+ /**
130
+ * Microsoft SQL 2000+ support schemas
131
+ */
132
+ @Override
133
+ protected boolean databaseSupportsSchemas() {
134
+ return true;
135
+ }
136
+
137
+ /**
138
+ * Treat LONGVARCHAR as CLOB on MSSQL for purposes of converting a JDBC value to Ruby.
139
+ */
140
+ @Override
141
+ protected IRubyObject jdbcToRuby(
142
+ final ThreadContext context, final Ruby runtime,
143
+ final int column, int type, final ResultSet resultSet)
144
+ throws SQLException {
145
+ if ( type == Types.LONGVARCHAR || type == Types.LONGNVARCHAR ) type = Types.CLOB;
146
+ return super.jdbcToRuby(context, runtime, column, type, resultSet);
147
+ }
148
+
149
+ @Override
150
+ protected ColumnData[] extractColumns(final ThreadContext context,
151
+ final Connection connection, final ResultSet resultSet,
152
+ final boolean downCase) throws SQLException {
153
+ return filterRowNumFromColumns( super.extractColumns(context, connection, resultSet, downCase) );
154
+ }
155
+
156
+ /**
157
+ * Filter out the <tt>_row_num</tt> column from results.
158
+ */
159
+ private static ColumnData[] filterRowNumFromColumns(final ColumnData[] columns) {
160
+ for ( int i = 0; i < columns.length; i++ ) {
161
+ if ( "_row_num".equals( columns[i].getName() ) ) {
162
+ final ColumnData[] filtered = new ColumnData[columns.length - 1];
163
+
164
+ if ( i > 0 ) {
165
+ System.arraycopy(columns, 0, filtered, 0, i);
166
+ }
167
+
168
+ if ( i + 1 < columns.length ) {
169
+ System.arraycopy(columns, i + 1, filtered, i, columns.length - (i + 1));
170
+ }
171
+
172
+ return filtered;
173
+ }
174
+ }
175
+ return columns;
176
+ }
177
+
178
+ // internal helper not meant as a "public" API - used in one place thus every
179
+ @JRubyMethod(name = "jtds_driver?")
180
+ public RubyBoolean jtds_driver_p(final ThreadContext context) throws SQLException {
181
+ // "jTDS Type 4 JDBC Driver for MS SQL Server and Sybase"
182
+ // SQLJDBC: "Microsoft JDBC Driver 4.0 for SQL Server"
183
+ return withConnection(context, new Callable<RubyBoolean>() {
184
+ // NOTE: only used in one place for now (on release_savepoint) ...
185
+ // might get optimized to only happen once since driver won't change
186
+ public RubyBoolean call(final Connection connection) throws SQLException {
187
+ final String driver = connection.getMetaData().getDriverName();
188
+ return context.runtime.newBoolean( driver.indexOf("jTDS") >= 0 );
189
+ }
190
+ });
191
+ }
192
+
193
+ }
@@ -0,0 +1,140 @@
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.mysql;
27
+
28
+ import org.jcodings.specific.UTF8Encoding;
29
+ import org.jruby.Ruby;
30
+ import org.jruby.RubyModule;
31
+ import org.jruby.RubyString;
32
+ import org.jruby.anno.JRubyMethod;
33
+ import org.jruby.runtime.ThreadContext;
34
+ import org.jruby.runtime.builtin.IRubyObject;
35
+ import org.jruby.util.ByteList;
36
+
37
+ import static arjdbc.util.QuotingUtils.BYTES_0;
38
+ import static arjdbc.util.QuotingUtils.BYTES_1;
39
+ import static arjdbc.util.QuotingUtils.quoteCharAndDecorateWith;
40
+
41
+ /**
42
+ * ArJdbc::MySQL
43
+ *
44
+ * @author kares
45
+ */
46
+ @org.jruby.anno.JRubyModule(name = "ArJdbc::MySQL")
47
+ public class MySQLModule {
48
+
49
+ public static RubyModule load(final RubyModule arJdbc) {
50
+ RubyModule mysql = arJdbc.defineModuleUnder("MySQL");
51
+ mysql.defineAnnotatedMethods(MySQLModule.class);
52
+ return mysql;
53
+ }
54
+
55
+ public static RubyModule load(final Ruby runtime) {
56
+ return load( arjdbc.ArJdbcModule.get(runtime) );
57
+ }
58
+
59
+ //private final static byte[] ZERO = new byte[] {'\\','0'};
60
+ //private final static byte[] NEWLINE = new byte[] {'\\','n'};
61
+ //private final static byte[] CARRIAGE = new byte[] {'\\','r'};
62
+ //private final static byte[] ZED = new byte[] {'\\','Z'};
63
+ //private final static byte[] DBL = new byte[] {'\\','"'};
64
+ //private final static byte[] SINGLE = new byte[] {'\\','\''};
65
+ //private final static byte[] ESCAPE = new byte[] {'\\','\\'};
66
+
67
+ private static final int STRING_QUOTES_OPTIMISTIC_QUESS = 24;
68
+
69
+ @JRubyMethod(name = "quote_string", required = 1, frame = false)
70
+ public static IRubyObject quote_string(final ThreadContext context,
71
+ final IRubyObject recv, final IRubyObject string) {
72
+
73
+ final ByteList stringBytes = ((RubyString) string).getByteList();
74
+ final byte[] bytes = stringBytes.unsafeBytes();
75
+ final int begin = stringBytes.getBegin();
76
+ final int realSize = stringBytes.getRealSize();
77
+
78
+ ByteList quotedBytes = null; int appendFrom = begin;
79
+ for ( int i = begin; i < begin + realSize; i++ ) {
80
+ final byte byte2;
81
+ switch ( bytes[i] ) {
82
+ case 0 : byte2 = '0'; break;
83
+ case '\n' : byte2 = 'n'; break;
84
+ case '\r' : byte2 = 'r'; break;
85
+ case 26 : byte2 = 'Z'; break;
86
+ case '"' : byte2 = '"'; break;
87
+ case '\'' : byte2 = '\''; break;
88
+ case '\\' : byte2 = '\\'; break;
89
+ default : byte2 = 0;
90
+ }
91
+ if ( byte2 != 0 ) {
92
+ if ( quotedBytes == null ) {
93
+ quotedBytes = new ByteList(
94
+ new byte[realSize + STRING_QUOTES_OPTIMISTIC_QUESS],
95
+ stringBytes.getEncoding()
96
+ );
97
+ quotedBytes.setBegin(0);
98
+ quotedBytes.setRealSize(0);
99
+ } // copy string on-first quote we "optimize" for non-quoted
100
+ quotedBytes.append(bytes, appendFrom, i - appendFrom);
101
+ quotedBytes.append('\\').append(byte2);
102
+ appendFrom = i + 1;
103
+ }
104
+ }
105
+ if ( quotedBytes != null ) { // append what's left in the end :
106
+ quotedBytes.append(bytes, appendFrom, begin + realSize - appendFrom);
107
+ }
108
+ else return string; // nothing changed, can return original
109
+
110
+ final Ruby runtime = context.runtime;
111
+ final RubyString quoted = runtime.newString(quotedBytes);
112
+ if ( runtime.is1_9() ) { // only due mysql2 compatibility
113
+ quoted.associateEncoding( UTF8Encoding.INSTANCE );
114
+ }
115
+ return quoted;
116
+ }
117
+
118
+ @JRubyMethod(name = "quoted_true", required = 0, frame = false)
119
+ public static IRubyObject quoted_true(
120
+ final ThreadContext context,
121
+ final IRubyObject self) {
122
+ return RubyString.newString(context.runtime, BYTES_1);
123
+ }
124
+
125
+ @JRubyMethod(name = "quoted_false", required = 0, frame = false)
126
+ public static IRubyObject quoted_false(
127
+ final ThreadContext context,
128
+ final IRubyObject self) {
129
+ return RubyString.newString(context.runtime, BYTES_0);
130
+ }
131
+
132
+ @JRubyMethod(name = "quote_column_name", required = 1, frame = false)
133
+ public static IRubyObject quote_column_name(
134
+ final ThreadContext context,
135
+ final IRubyObject self,
136
+ final IRubyObject string) { // "`#{name.to_s.gsub('`', '``')}`"
137
+ return quoteCharAndDecorateWith(context, string.asString(), '`', '`', (byte) '`', (byte) '`');
138
+ }
139
+
140
+ }