activerecord-jdbc-adapter 1.0.3-java → 50.1-java

Sign up to get free protection for your applications and to get access to all the features.
Files changed (268) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +33 -0
  3. data/.travis.yml +79 -0
  4. data/.yardopts +4 -0
  5. data/CONTRIBUTING.md +50 -0
  6. data/Gemfile +91 -0
  7. data/History.md +1191 -0
  8. data/LICENSE.txt +22 -17
  9. data/README.md +169 -0
  10. data/RUNNING_TESTS.md +127 -0
  11. data/Rakefile +294 -5
  12. data/Rakefile.jdbc +20 -0
  13. data/activerecord-jdbc-adapter.gemspec +55 -0
  14. data/lib/active_record/connection_adapters/as400_adapter.rb +2 -0
  15. data/lib/active_record/connection_adapters/db2_adapter.rb +1 -0
  16. data/lib/active_record/connection_adapters/firebird_adapter.rb +1 -0
  17. data/lib/active_record/connection_adapters/mariadb_adapter.rb +1 -0
  18. data/lib/active_record/connection_adapters/sqlserver_adapter.rb +1 -0
  19. data/lib/activerecord-jdbc-adapter.rb +0 -5
  20. data/lib/arel/visitors/compat.rb +60 -0
  21. data/lib/arel/visitors/db2.rb +128 -6
  22. data/lib/arel/visitors/derby.rb +103 -10
  23. data/lib/arel/visitors/firebird.rb +79 -0
  24. data/lib/arel/visitors/h2.rb +25 -0
  25. data/lib/arel/visitors/hsqldb.rb +18 -10
  26. data/lib/arel/visitors/postgresql_jdbc.rb +6 -0
  27. data/lib/arel/visitors/sql_server.rb +225 -0
  28. data/lib/arel/visitors/sql_server/ng42.rb +293 -0
  29. data/lib/arjdbc.rb +11 -21
  30. data/lib/arjdbc/abstract/connection_management.rb +35 -0
  31. data/lib/arjdbc/abstract/core.rb +64 -0
  32. data/lib/arjdbc/abstract/database_statements.rb +64 -0
  33. data/lib/arjdbc/abstract/statement_cache.rb +58 -0
  34. data/lib/arjdbc/abstract/transaction_support.rb +86 -0
  35. data/lib/arjdbc/db2.rb +3 -1
  36. data/lib/arjdbc/db2/adapter.rb +630 -250
  37. data/lib/arjdbc/db2/as400.rb +130 -0
  38. data/lib/arjdbc/db2/column.rb +167 -0
  39. data/lib/arjdbc/db2/connection_methods.rb +44 -0
  40. data/lib/arjdbc/derby.rb +1 -5
  41. data/lib/arjdbc/derby/active_record_patch.rb +13 -0
  42. data/lib/arjdbc/derby/adapter.rb +409 -217
  43. data/lib/arjdbc/derby/connection_methods.rb +16 -14
  44. data/lib/arjdbc/derby/schema_creation.rb +15 -0
  45. data/lib/arjdbc/discover.rb +62 -50
  46. data/lib/arjdbc/firebird.rb +3 -1
  47. data/lib/arjdbc/firebird/adapter.rb +365 -62
  48. data/lib/arjdbc/firebird/connection_methods.rb +23 -0
  49. data/lib/arjdbc/h2.rb +2 -3
  50. data/lib/arjdbc/h2/adapter.rb +273 -6
  51. data/lib/arjdbc/h2/connection_methods.rb +23 -8
  52. data/lib/arjdbc/hsqldb.rb +2 -3
  53. data/lib/arjdbc/hsqldb/adapter.rb +204 -77
  54. data/lib/arjdbc/hsqldb/connection_methods.rb +24 -10
  55. data/lib/arjdbc/hsqldb/explain_support.rb +35 -0
  56. data/lib/arjdbc/hsqldb/schema_creation.rb +11 -0
  57. data/lib/arjdbc/informix.rb +4 -2
  58. data/lib/arjdbc/informix/adapter.rb +78 -54
  59. data/lib/arjdbc/informix/connection_methods.rb +8 -9
  60. data/lib/arjdbc/jdbc.rb +59 -2
  61. data/lib/arjdbc/jdbc/adapter.rb +356 -166
  62. data/lib/arjdbc/jdbc/adapter_java.jar +0 -0
  63. data/lib/arjdbc/jdbc/adapter_require.rb +46 -0
  64. data/lib/arjdbc/jdbc/base_ext.rb +15 -0
  65. data/lib/arjdbc/jdbc/callbacks.rb +27 -18
  66. data/lib/arjdbc/jdbc/column.rb +79 -20
  67. data/lib/arjdbc/jdbc/connection.rb +5 -119
  68. data/lib/arjdbc/jdbc/connection_methods.rb +32 -4
  69. data/lib/arjdbc/jdbc/error.rb +65 -0
  70. data/lib/arjdbc/jdbc/extension.rb +41 -29
  71. data/lib/arjdbc/jdbc/java.rb +5 -6
  72. data/lib/arjdbc/jdbc/jdbc.rake +3 -126
  73. data/lib/arjdbc/jdbc/railtie.rb +2 -9
  74. data/lib/arjdbc/jdbc/rake_tasks.rb +3 -10
  75. data/lib/arjdbc/jdbc/serialized_attributes_helper.rb +3 -0
  76. data/lib/arjdbc/jdbc/type_cast.rb +166 -0
  77. data/lib/arjdbc/jdbc/type_converter.rb +35 -19
  78. data/lib/arjdbc/mssql.rb +6 -3
  79. data/lib/arjdbc/mssql/adapter.rb +630 -298
  80. data/lib/arjdbc/mssql/column.rb +200 -0
  81. data/lib/arjdbc/mssql/connection_methods.rb +66 -17
  82. data/lib/arjdbc/mssql/explain_support.rb +99 -0
  83. data/lib/arjdbc/mssql/limit_helpers.rb +189 -50
  84. data/lib/arjdbc/mssql/lock_methods.rb +77 -0
  85. data/lib/arjdbc/mssql/types.rb +343 -0
  86. data/lib/arjdbc/mssql/utils.rb +82 -0
  87. data/lib/arjdbc/mysql.rb +2 -3
  88. data/lib/arjdbc/mysql/adapter.rb +86 -356
  89. data/lib/arjdbc/mysql/connection_methods.rb +159 -23
  90. data/lib/arjdbc/oracle/adapter.rb +714 -263
  91. data/lib/arjdbc/postgresql.rb +2 -3
  92. data/lib/arjdbc/postgresql/_bc_time_cast_patch.rb +24 -0
  93. data/lib/arjdbc/postgresql/adapter.rb +570 -400
  94. data/lib/arjdbc/postgresql/base/array_decoder.rb +26 -0
  95. data/lib/arjdbc/postgresql/base/array_encoder.rb +25 -0
  96. data/lib/arjdbc/postgresql/base/array_parser.rb +95 -0
  97. data/lib/arjdbc/postgresql/base/pgconn.rb +11 -0
  98. data/lib/arjdbc/postgresql/column.rb +51 -0
  99. data/lib/arjdbc/postgresql/connection_methods.rb +57 -18
  100. data/lib/arjdbc/postgresql/name.rb +24 -0
  101. data/lib/arjdbc/postgresql/oid_types.rb +192 -0
  102. data/lib/arjdbc/railtie.rb +11 -0
  103. data/lib/arjdbc/sqlite3.rb +2 -3
  104. data/lib/arjdbc/sqlite3/adapter.rb +518 -198
  105. data/lib/arjdbc/sqlite3/connection_methods.rb +49 -24
  106. data/lib/arjdbc/sybase.rb +2 -2
  107. data/lib/arjdbc/sybase/adapter.rb +7 -6
  108. data/lib/arjdbc/tasks.rb +13 -0
  109. data/lib/arjdbc/tasks/database_tasks.rb +52 -0
  110. data/lib/arjdbc/tasks/databases.rake +91 -0
  111. data/lib/arjdbc/tasks/databases3.rake +215 -0
  112. data/lib/arjdbc/tasks/databases4.rake +39 -0
  113. data/lib/arjdbc/tasks/db2_database_tasks.rb +104 -0
  114. data/lib/arjdbc/tasks/derby_database_tasks.rb +95 -0
  115. data/lib/arjdbc/tasks/h2_database_tasks.rb +31 -0
  116. data/lib/arjdbc/tasks/hsqldb_database_tasks.rb +70 -0
  117. data/lib/arjdbc/tasks/jdbc_database_tasks.rb +169 -0
  118. data/lib/arjdbc/tasks/mssql_database_tasks.rb +46 -0
  119. data/lib/arjdbc/util/quoted_cache.rb +60 -0
  120. data/lib/arjdbc/util/serialized_attributes.rb +98 -0
  121. data/lib/arjdbc/util/table_copier.rb +110 -0
  122. data/lib/arjdbc/version.rb +1 -6
  123. data/lib/generators/jdbc/USAGE +9 -0
  124. data/lib/generators/jdbc/jdbc_generator.rb +8 -0
  125. data/lib/jdbc_adapter.rb +1 -1
  126. data/lib/jdbc_adapter/rake_tasks.rb +3 -2
  127. data/lib/jdbc_adapter/version.rb +2 -1
  128. data/pom.xml +114 -0
  129. data/rails_generators/jdbc_generator.rb +1 -1
  130. data/rails_generators/templates/config/initializers/jdbc.rb +8 -5
  131. data/rails_generators/templates/lib/tasks/jdbc.rake +7 -4
  132. data/rakelib/01-tomcat.rake +51 -0
  133. data/rakelib/02-test.rake +132 -0
  134. data/rakelib/bundler_ext.rb +11 -0
  135. data/rakelib/compile.rake +67 -22
  136. data/rakelib/db.rake +61 -0
  137. data/rakelib/rails.rake +204 -29
  138. data/src/java/arjdbc/ArJdbcModule.java +286 -0
  139. data/src/java/arjdbc/db2/DB2Module.java +76 -0
  140. data/src/java/arjdbc/db2/DB2RubyJdbcConnection.java +126 -0
  141. data/src/java/arjdbc/derby/DerbyModule.java +99 -243
  142. data/src/java/arjdbc/derby/DerbyRubyJdbcConnection.java +152 -0
  143. data/src/java/arjdbc/firebird/FirebirdRubyJdbcConnection.java +174 -0
  144. data/src/java/arjdbc/{jdbc/JdbcConnectionFactory.java → h2/H2Module.java} +20 -6
  145. data/src/java/arjdbc/h2/H2RubyJdbcConnection.java +27 -12
  146. data/src/java/arjdbc/hsqldb/HSQLDBModule.java +73 -0
  147. data/src/java/arjdbc/informix/InformixRubyJdbcConnection.java +7 -6
  148. data/src/java/arjdbc/jdbc/AdapterJavaService.java +7 -29
  149. data/src/java/arjdbc/jdbc/Callable.java +44 -0
  150. data/src/java/arjdbc/jdbc/ConnectionFactory.java +132 -0
  151. data/src/java/arjdbc/jdbc/DataSourceConnectionFactory.java +157 -0
  152. data/src/java/arjdbc/jdbc/DriverConnectionFactory.java +63 -0
  153. data/src/java/arjdbc/jdbc/DriverWrapper.java +119 -0
  154. data/src/java/arjdbc/jdbc/JdbcResult.java +130 -0
  155. data/src/java/arjdbc/jdbc/RubyJdbcConnection.java +3622 -948
  156. data/src/java/arjdbc/mssql/MSSQLModule.java +90 -0
  157. data/src/java/arjdbc/mssql/MSSQLRubyJdbcConnection.java +181 -0
  158. data/src/java/arjdbc/mysql/MySQLModule.java +99 -81
  159. data/src/java/arjdbc/mysql/MySQLRubyJdbcConnection.java +294 -0
  160. data/src/java/arjdbc/oracle/OracleModule.java +80 -0
  161. data/src/java/arjdbc/oracle/OracleRubyJdbcConnection.java +387 -17
  162. data/src/java/arjdbc/postgresql/ByteaUtils.java +157 -0
  163. data/src/java/arjdbc/postgresql/PgResultSetMetaDataWrapper.java +23 -0
  164. data/src/java/arjdbc/postgresql/PostgreSQLModule.java +77 -0
  165. data/src/java/arjdbc/postgresql/PostgreSQLResult.java +184 -0
  166. data/src/java/arjdbc/postgresql/PostgreSQLRubyJdbcConnection.java +952 -0
  167. data/src/java/arjdbc/sqlite3/SQLite3Module.java +73 -0
  168. data/src/java/arjdbc/sqlite3/SQLite3RubyJdbcConnection.java +525 -0
  169. data/src/java/arjdbc/util/CallResultSet.java +826 -0
  170. data/src/java/arjdbc/util/DateTimeUtils.java +580 -0
  171. data/src/java/arjdbc/util/ObjectSupport.java +65 -0
  172. data/src/java/arjdbc/util/QuotingUtils.java +138 -0
  173. data/src/java/arjdbc/util/StringCache.java +63 -0
  174. data/src/java/arjdbc/util/StringHelper.java +159 -0
  175. metadata +245 -268
  176. data/History.txt +0 -369
  177. data/Manifest.txt +0 -180
  178. data/README.txt +0 -181
  179. data/lib/active_record/connection_adapters/oracle_adapter.rb +0 -1
  180. data/lib/arel/engines/sql/compilers/db2_compiler.rb +0 -9
  181. data/lib/arel/engines/sql/compilers/derby_compiler.rb +0 -6
  182. data/lib/arel/engines/sql/compilers/h2_compiler.rb +0 -6
  183. data/lib/arel/engines/sql/compilers/hsqldb_compiler.rb +0 -15
  184. data/lib/arel/engines/sql/compilers/jdbc_compiler.rb +0 -6
  185. data/lib/arel/engines/sql/compilers/mssql_compiler.rb +0 -46
  186. data/lib/arel/visitors/mssql.rb +0 -44
  187. data/lib/arjdbc/jdbc/compatibility.rb +0 -51
  188. data/lib/arjdbc/jdbc/core_ext.rb +0 -24
  189. data/lib/arjdbc/jdbc/discover.rb +0 -18
  190. data/lib/arjdbc/jdbc/driver.rb +0 -44
  191. data/lib/arjdbc/jdbc/missing_functionality_helper.rb +0 -87
  192. data/lib/arjdbc/jdbc/quoted_primary_key.rb +0 -28
  193. data/lib/arjdbc/jdbc/require_driver.rb +0 -16
  194. data/lib/arjdbc/mimer.rb +0 -2
  195. data/lib/arjdbc/mimer/adapter.rb +0 -142
  196. data/lib/arjdbc/mssql/tsql_helper.rb +0 -61
  197. data/lib/arjdbc/oracle.rb +0 -3
  198. data/lib/arjdbc/oracle/connection_methods.rb +0 -11
  199. data/lib/pg.rb +0 -4
  200. data/rakelib/package.rake +0 -92
  201. data/rakelib/test.rake +0 -81
  202. data/src/java/arjdbc/jdbc/SQLBlock.java +0 -48
  203. data/src/java/arjdbc/mssql/MssqlRubyJdbcConnection.java +0 -127
  204. data/src/java/arjdbc/postgresql/PostgresqlRubyJdbcConnection.java +0 -57
  205. data/src/java/arjdbc/sqlite3/Sqlite3RubyJdbcConnection.java +0 -64
  206. data/test/abstract_db_create.rb +0 -117
  207. data/test/activerecord/connection_adapters/type_conversion_test.rb +0 -31
  208. data/test/activerecord/connections/native_jdbc_mysql/connection.rb +0 -25
  209. data/test/db/db2.rb +0 -11
  210. data/test/db/derby.rb +0 -12
  211. data/test/db/h2.rb +0 -11
  212. data/test/db/hsqldb.rb +0 -13
  213. data/test/db/informix.rb +0 -11
  214. data/test/db/jdbc.rb +0 -11
  215. data/test/db/jndi_config.rb +0 -40
  216. data/test/db/logger.rb +0 -3
  217. data/test/db/mssql.rb +0 -9
  218. data/test/db/mysql.rb +0 -10
  219. data/test/db/oracle.rb +0 -34
  220. data/test/db/postgres.rb +0 -9
  221. data/test/db/sqlite3.rb +0 -11
  222. data/test/db2_simple_test.rb +0 -66
  223. data/test/derby_migration_test.rb +0 -68
  224. data/test/derby_multibyte_test.rb +0 -12
  225. data/test/derby_simple_test.rb +0 -99
  226. data/test/generic_jdbc_connection_test.rb +0 -29
  227. data/test/h2_simple_test.rb +0 -41
  228. data/test/has_many_through.rb +0 -79
  229. data/test/helper.rb +0 -5
  230. data/test/hsqldb_simple_test.rb +0 -6
  231. data/test/informix_simple_test.rb +0 -48
  232. data/test/jdbc_common.rb +0 -25
  233. data/test/jndi_callbacks_test.rb +0 -40
  234. data/test/jndi_test.rb +0 -25
  235. data/test/manualTestDatabase.rb +0 -191
  236. data/test/models/add_not_null_column_to_table.rb +0 -12
  237. data/test/models/auto_id.rb +0 -18
  238. data/test/models/data_types.rb +0 -28
  239. data/test/models/entry.rb +0 -43
  240. data/test/models/mixed_case.rb +0 -25
  241. data/test/models/reserved_word.rb +0 -18
  242. data/test/models/string_id.rb +0 -18
  243. data/test/models/validates_uniqueness_of_string.rb +0 -19
  244. data/test/mssql_db_create_test.rb +0 -26
  245. data/test/mssql_identity_insert_test.rb +0 -19
  246. data/test/mssql_legacy_types_test.rb +0 -58
  247. data/test/mssql_limit_offset_test.rb +0 -136
  248. data/test/mssql_multibyte_test.rb +0 -18
  249. data/test/mssql_simple_test.rb +0 -55
  250. data/test/mysql_db_create_test.rb +0 -27
  251. data/test/mysql_info_test.rb +0 -113
  252. data/test/mysql_multibyte_test.rb +0 -10
  253. data/test/mysql_nonstandard_primary_key_test.rb +0 -42
  254. data/test/mysql_simple_test.rb +0 -49
  255. data/test/oracle_simple_test.rb +0 -18
  256. data/test/oracle_specific_test.rb +0 -83
  257. data/test/pick_rails_version.rb +0 -3
  258. data/test/postgres_db_create_test.rb +0 -32
  259. data/test/postgres_drop_db_test.rb +0 -16
  260. data/test/postgres_mixed_case_test.rb +0 -29
  261. data/test/postgres_nonseq_pkey_test.rb +0 -38
  262. data/test/postgres_reserved_test.rb +0 -22
  263. data/test/postgres_schema_search_path_test.rb +0 -44
  264. data/test/postgres_simple_test.rb +0 -51
  265. data/test/postgres_table_alias_length_test.rb +0 -15
  266. data/test/simple.rb +0 -546
  267. data/test/sqlite3_simple_test.rb +0 -233
  268. data/test/sybase_jtds_simple_test.rb +0 -28
@@ -0,0 +1,826 @@
1
+ /*
2
+ * The MIT License
3
+ *
4
+ * Copyright 2014 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.util;
25
+
26
+ import java.io.InputStream;
27
+ import java.io.Reader;
28
+ import java.math.BigDecimal;
29
+ import java.net.URL;
30
+ import java.sql.Array;
31
+ import java.sql.Blob;
32
+ import java.sql.CallableStatement;
33
+ import java.sql.Clob;
34
+ import java.sql.Date;
35
+ import java.sql.NClob;
36
+ import java.sql.Ref;
37
+ import java.sql.ResultSet;
38
+ import java.sql.ResultSetMetaData;
39
+ import java.sql.RowId;
40
+ import java.sql.SQLException;
41
+ import java.sql.SQLFeatureNotSupportedException;
42
+ import java.sql.SQLWarning;
43
+ import java.sql.SQLXML;
44
+ import java.sql.Time;
45
+ import java.sql.Timestamp;
46
+ import java.util.Calendar;
47
+ import java.util.Map;
48
+
49
+ /**
50
+ * {@link ResultSet} "emulation" for {@link CallableStatement}.
51
+ *
52
+ * @author kares
53
+ */
54
+ public class CallResultSet implements ResultSet {
55
+
56
+ private final CallableStatement call;
57
+ private final int size; private int row;
58
+
59
+ public CallResultSet(CallableStatement call) {
60
+ this(call, 1);
61
+ }
62
+
63
+ public CallResultSet(CallableStatement call, final int size) {
64
+ this.call = call; this.size = size;
65
+ }
66
+
67
+ public CallableStatement getStatement() {
68
+ return call;
69
+ }
70
+
71
+ @SuppressWarnings("unchecked")
72
+ public <T> T unwrap(Class<T> iface) throws SQLException {
73
+ if ( iface.isAssignableFrom(getClass()) ) return (T) this;
74
+ return call.unwrap(iface);
75
+ }
76
+
77
+ public boolean isWrapperFor(Class<?> iface) throws SQLException {
78
+ if ( iface.isAssignableFrom(getClass()) ) return true;
79
+ return call.isWrapperFor(iface);
80
+ }
81
+
82
+ public int getHoldability() {
83
+ return 0;
84
+ // HOLD_CURSORS_OVER_COMMIT = 1
85
+ // CLOSE_CURSORS_AT_COMMIT = 2
86
+ }
87
+
88
+ public boolean isClosed() throws SQLException {
89
+ return call.isClosed();
90
+ }
91
+
92
+ public void close() throws SQLException {
93
+ // NOOP
94
+ }
95
+
96
+ public int getRow() { return row; }
97
+
98
+ public boolean absolute(int row) {
99
+ if ( row < 0 ) row = 0;
100
+ this.row = row; return row <= size && row > 0;
101
+ }
102
+ public boolean relative(int rows) {
103
+ return absolute(this.row + rows);
104
+ }
105
+
106
+ //public boolean next() {
107
+ // return ( ++row <= size );
108
+ //}
109
+
110
+ public boolean next() { return relative(+1); }
111
+ public boolean previous() { return relative(-1); }
112
+
113
+ public boolean first() { return absolute(1); }
114
+ public boolean last() { return absolute(-1); }
115
+
116
+ public boolean isBeforeFirst() { return row <= 0; }
117
+ public boolean isAfterLast() { return row > size; }
118
+
119
+ public boolean isFirst() { return row == 1; }
120
+ public boolean isLast() { return row == size; }
121
+
122
+ public void beforeFirst() { row = 0; }
123
+ public void afterLast() { row = size + 1; }
124
+
125
+ public ResultSetMetaData getMetaData() throws SQLException {
126
+ return call.getMetaData(); // NOTE: should be fine - right?
127
+ }
128
+
129
+ public int findColumn(String columnLabel) throws SQLException {
130
+ getObject(columnLabel); return 1;
131
+ }
132
+
133
+ public void setFetchDirection(int direction) throws SQLException {
134
+ call.setFetchDirection(direction);
135
+ }
136
+
137
+ public int getFetchDirection() throws SQLException {
138
+ return call.getFetchDirection();
139
+ }
140
+
141
+ public void setFetchSize(int rows) throws SQLException {
142
+ // NOOP
143
+ }
144
+
145
+ public int getFetchSize() throws SQLException {
146
+ return 1;
147
+ }
148
+
149
+ public int getType() throws SQLException {
150
+ return TYPE_SCROLL_INSENSITIVE;
151
+ }
152
+
153
+ public int getConcurrency() throws SQLException {
154
+ return CONCUR_READ_ONLY;
155
+ }
156
+
157
+
158
+ public boolean wasNull() throws SQLException {
159
+ return call.wasNull();
160
+ }
161
+
162
+ // GET-ERS :
163
+
164
+ public String getString(int columnIndex) throws SQLException {
165
+ return call.getString(columnIndex);
166
+ }
167
+
168
+ public boolean getBoolean(int columnIndex) throws SQLException {
169
+ return call.getBoolean(columnIndex);
170
+ }
171
+
172
+ public byte getByte(int columnIndex) throws SQLException {
173
+ return call.getByte(columnIndex);
174
+ }
175
+
176
+ public short getShort(int columnIndex) throws SQLException {
177
+ return call.getShort(columnIndex);
178
+ }
179
+
180
+ public int getInt(int columnIndex) throws SQLException {
181
+ return call.getInt(columnIndex);
182
+ }
183
+
184
+ public long getLong(int columnIndex) throws SQLException {
185
+ return call.getLong(columnIndex);
186
+ }
187
+
188
+ public float getFloat(int columnIndex) throws SQLException {
189
+ return call.getFloat(columnIndex);
190
+ }
191
+
192
+ public double getDouble(int columnIndex) throws SQLException {
193
+ return call.getDouble(columnIndex);
194
+ }
195
+
196
+ @SuppressWarnings("deprecation")
197
+ public BigDecimal getBigDecimal(int columnIndex, int scale) throws SQLException {
198
+ return call.getBigDecimal(columnIndex, scale);
199
+ }
200
+
201
+ public byte[] getBytes(int columnIndex) throws SQLException {
202
+ return call.getBytes(columnIndex);
203
+ }
204
+
205
+ public Date getDate(int columnIndex) throws SQLException {
206
+ return call.getDate(columnIndex);
207
+ }
208
+
209
+ public Time getTime(int columnIndex) throws SQLException {
210
+ return call.getTime(columnIndex);
211
+ }
212
+
213
+ public Timestamp getTimestamp(int columnIndex) throws SQLException {
214
+ return call.getTimestamp(columnIndex);
215
+ }
216
+
217
+ public InputStream getAsciiStream(int columnIndex) throws SQLException {
218
+ throw new UnsupportedOperationException("getAsciiStream()");
219
+ }
220
+
221
+ @SuppressWarnings("deprecation")
222
+ public InputStream getUnicodeStream(int columnIndex) throws SQLException {
223
+ throw new UnsupportedOperationException("getUnicodeStream()");
224
+ }
225
+
226
+ public InputStream getBinaryStream(int columnIndex) throws SQLException {
227
+ throw new UnsupportedOperationException("getBinaryStream()");
228
+ }
229
+
230
+ public String getString(String columnLabel) throws SQLException {
231
+ return call.getString(columnLabel);
232
+ }
233
+
234
+ public boolean getBoolean(String columnLabel) throws SQLException {
235
+ return call.getBoolean(columnLabel);
236
+ }
237
+
238
+ public byte getByte(String columnLabel) throws SQLException {
239
+ return call.getByte(columnLabel);
240
+ }
241
+
242
+ public short getShort(String columnLabel) throws SQLException {
243
+ return call.getShort(columnLabel);
244
+ }
245
+
246
+ public int getInt(String columnLabel) throws SQLException {
247
+ return call.getInt(columnLabel);
248
+ }
249
+
250
+ public long getLong(String columnLabel) throws SQLException {
251
+ return call.getLong(columnLabel);
252
+ }
253
+
254
+ public float getFloat(String columnLabel) throws SQLException {
255
+ return call.getFloat(columnLabel);
256
+ }
257
+
258
+ public double getDouble(String columnLabel) throws SQLException {
259
+ return call.getDouble(columnLabel);
260
+ }
261
+
262
+ @SuppressWarnings("deprecation")
263
+ public BigDecimal getBigDecimal(String columnLabel, int scale) throws SQLException {
264
+ return call.getBigDecimal(columnLabel);
265
+ }
266
+
267
+ public byte[] getBytes(String columnLabel) throws SQLException {
268
+ return call.getBytes(columnLabel);
269
+ }
270
+
271
+ public Date getDate(String columnLabel) throws SQLException {
272
+ return call.getDate(columnLabel);
273
+ }
274
+
275
+ public Time getTime(String columnLabel) throws SQLException {
276
+ return call.getTime(columnLabel);
277
+ }
278
+
279
+ public Timestamp getTimestamp(String columnLabel) throws SQLException {
280
+ return call.getTimestamp(columnLabel);
281
+ }
282
+
283
+ public InputStream getAsciiStream(String columnLabel) throws SQLException {
284
+ throw new UnsupportedOperationException("getAsciiStream()");
285
+ }
286
+
287
+ @SuppressWarnings("deprecation")
288
+ public InputStream getUnicodeStream(String columnLabel) throws SQLException {
289
+ throw new UnsupportedOperationException("getUnicodeStream()");
290
+ }
291
+
292
+ public InputStream getBinaryStream(String columnLabel) throws SQLException {
293
+ throw new UnsupportedOperationException("getBinaryStream()");
294
+ }
295
+
296
+ public Object getObject(int columnIndex) throws SQLException {
297
+ return call.getObject(columnIndex);
298
+ }
299
+
300
+ public Object getObject(String columnLabel) throws SQLException {
301
+ return call.getObject(columnLabel);
302
+ }
303
+
304
+ public Reader getCharacterStream(int columnIndex) throws SQLException {
305
+ return call.getCharacterStream(columnIndex);
306
+ }
307
+
308
+ public Reader getCharacterStream(String columnLabel) throws SQLException {
309
+ return call.getCharacterStream(columnLabel);
310
+ }
311
+
312
+ public BigDecimal getBigDecimal(int columnIndex) throws SQLException {
313
+ return call.getBigDecimal(columnIndex);
314
+ }
315
+
316
+ public BigDecimal getBigDecimal(String columnLabel) throws SQLException {
317
+ return call.getBigDecimal(columnLabel);
318
+ }
319
+
320
+ public Object getObject(int columnIndex, Map<String, Class<?>> map) throws SQLException {
321
+ return call.getObject(columnIndex, map);
322
+ }
323
+
324
+ public Ref getRef(int columnIndex) throws SQLException {
325
+ return call.getRef(columnIndex);
326
+ }
327
+
328
+ public Blob getBlob(int columnIndex) throws SQLException {
329
+ return call.getBlob(columnIndex);
330
+ }
331
+
332
+ public Clob getClob(int columnIndex) throws SQLException {
333
+ return call.getClob(columnIndex);
334
+ }
335
+
336
+ public Array getArray(int columnIndex) throws SQLException {
337
+ return call.getArray(columnIndex);
338
+ }
339
+
340
+ public Object getObject(String columnLabel, Map<String, Class<?>> map) throws SQLException {
341
+ return call.getObject(columnLabel, map);
342
+ }
343
+
344
+ public Ref getRef(String columnLabel) throws SQLException {
345
+ return call.getRef(columnLabel);
346
+ }
347
+
348
+ public Blob getBlob(String columnLabel) throws SQLException {
349
+ return call.getBlob(columnLabel);
350
+ }
351
+
352
+ public Clob getClob(String columnLabel) throws SQLException {
353
+ return call.getClob(columnLabel);
354
+ }
355
+
356
+ public Array getArray(String columnLabel) throws SQLException {
357
+ return call.getArray(columnLabel);
358
+ }
359
+
360
+ public Date getDate(int columnIndex, Calendar cal) throws SQLException {
361
+ return call.getDate(columnIndex, cal);
362
+ }
363
+
364
+ public Date getDate(String columnLabel, Calendar cal) throws SQLException {
365
+ return call.getDate(columnLabel, cal);
366
+ }
367
+
368
+ public Time getTime(int columnIndex, Calendar cal) throws SQLException {
369
+ return call.getTime(columnIndex, cal);
370
+ }
371
+
372
+ public Time getTime(String columnLabel, Calendar cal) throws SQLException {
373
+ return call.getTime(columnLabel, cal);
374
+ }
375
+
376
+ public Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException {
377
+ return call.getTimestamp(columnIndex, cal);
378
+ }
379
+
380
+ public Timestamp getTimestamp(String columnLabel, Calendar cal) throws SQLException {
381
+ return call.getTimestamp(columnLabel, cal);
382
+ }
383
+
384
+ public URL getURL(int columnIndex) throws SQLException {
385
+ return call.getURL(columnIndex);
386
+ }
387
+
388
+ public URL getURL(String columnLabel) throws SQLException {
389
+ return call.getURL(columnLabel);
390
+ }
391
+
392
+ public RowId getRowId(int columnIndex) throws SQLException {
393
+ return call.getRowId(columnIndex);
394
+ }
395
+
396
+ public RowId getRowId(String columnLabel) throws SQLException {
397
+ return call.getRowId(columnLabel);
398
+ }
399
+
400
+ public NClob getNClob(int columnIndex) throws SQLException {
401
+ return call.getNClob(columnIndex);
402
+ }
403
+
404
+ public NClob getNClob(String columnLabel) throws SQLException {
405
+ return call.getNClob(columnLabel);
406
+ }
407
+
408
+ public SQLXML getSQLXML(int columnIndex) throws SQLException {
409
+ return call.getSQLXML(columnIndex);
410
+ }
411
+
412
+ public SQLXML getSQLXML(String columnLabel) throws SQLException {
413
+ return call.getSQLXML(columnLabel);
414
+ }
415
+
416
+ public String getNString(int columnIndex) throws SQLException {
417
+ return call.getNString(columnIndex);
418
+ }
419
+
420
+ public String getNString(String columnLabel) throws SQLException {
421
+ return call.getNString(columnLabel);
422
+ }
423
+
424
+ public Reader getNCharacterStream(int columnIndex) throws SQLException {
425
+ return call.getNCharacterStream(columnIndex);
426
+ }
427
+
428
+ public Reader getNCharacterStream(String columnLabel) throws SQLException {
429
+ return call.getNCharacterStream(columnLabel);
430
+ }
431
+
432
+ public <T> T getObject(int columnIndex, Class<T> type) throws SQLException {
433
+ return call.getObject(columnIndex, type);
434
+ }
435
+
436
+ public <T> T getObject(String columnLabel, Class<T> type) throws SQLException {
437
+ return call.getObject(columnLabel, type);
438
+ }
439
+
440
+
441
+ // NOT SUPPORTED OPERATIONS :
442
+
443
+
444
+ public SQLWarning getWarnings() throws SQLException {
445
+ return null; // NOOP
446
+ }
447
+
448
+ public void clearWarnings() throws SQLException {
449
+ // NOOP
450
+ }
451
+
452
+ public String getCursorName() throws SQLException {
453
+ return null; // NOOP
454
+ }
455
+
456
+
457
+ public boolean rowUpdated() throws SQLException {
458
+ throw new SQLFeatureNotSupportedException("row updates");
459
+ }
460
+
461
+ public boolean rowInserted() throws SQLException {
462
+ throw new SQLFeatureNotSupportedException("row inserts");
463
+ }
464
+
465
+ public boolean rowDeleted() throws SQLException {
466
+ throw new SQLFeatureNotSupportedException("row deletes");
467
+ }
468
+
469
+ public void insertRow() throws SQLException {
470
+ throw new SQLFeatureNotSupportedException("row inserts");
471
+ }
472
+
473
+ public void updateRow() throws SQLException {
474
+ throw new SQLFeatureNotSupportedException("row updates");
475
+ }
476
+
477
+ public void deleteRow() throws SQLException {
478
+ throw new SQLFeatureNotSupportedException("row deletes");
479
+ }
480
+
481
+ public void refreshRow() throws SQLException {
482
+ // NOOOP
483
+ }
484
+
485
+ public void cancelRowUpdates() throws SQLException {
486
+ // NOOP
487
+ }
488
+
489
+ public void moveToInsertRow() throws SQLException {
490
+ throw new SQLFeatureNotSupportedException();
491
+ }
492
+
493
+ public void moveToCurrentRow() throws SQLException {
494
+ throw new SQLFeatureNotSupportedException();
495
+ }
496
+
497
+
498
+ public void updateNull(int columnIndex) throws SQLException {
499
+ throw new SQLFeatureNotSupportedException("updates");
500
+ }
501
+
502
+ public void updateBoolean(int columnIndex, boolean x) throws SQLException {
503
+ throw new SQLFeatureNotSupportedException("updates");
504
+ }
505
+
506
+ public void updateByte(int columnIndex, byte x) throws SQLException {
507
+ throw new SQLFeatureNotSupportedException("updates");
508
+ }
509
+
510
+ public void updateShort(int columnIndex, short x) throws SQLException {
511
+ throw new SQLFeatureNotSupportedException("updates");
512
+ }
513
+
514
+ public void updateInt(int columnIndex, int x) throws SQLException {
515
+ throw new SQLFeatureNotSupportedException("updates");
516
+ }
517
+
518
+ public void updateLong(int columnIndex, long x) throws SQLException {
519
+ throw new SQLFeatureNotSupportedException("updates");
520
+ }
521
+
522
+ public void updateFloat(int columnIndex, float x) throws SQLException {
523
+ throw new SQLFeatureNotSupportedException("updates");
524
+ }
525
+
526
+ public void updateDouble(int columnIndex, double x) throws SQLException {
527
+ throw new SQLFeatureNotSupportedException("updates");
528
+ }
529
+
530
+ public void updateBigDecimal(int columnIndex, BigDecimal x) throws SQLException {
531
+ throw new SQLFeatureNotSupportedException("updates");
532
+ }
533
+
534
+ public void updateString(int columnIndex, String x) throws SQLException {
535
+ throw new SQLFeatureNotSupportedException("updates");
536
+ }
537
+
538
+ public void updateBytes(int columnIndex, byte[] x) throws SQLException {
539
+ throw new SQLFeatureNotSupportedException("updates");
540
+ }
541
+
542
+ public void updateDate(int columnIndex, Date x) throws SQLException {
543
+ throw new SQLFeatureNotSupportedException("updates");
544
+ }
545
+
546
+ public void updateTime(int columnIndex, Time x) throws SQLException {
547
+ throw new SQLFeatureNotSupportedException("updates");
548
+ }
549
+
550
+ public void updateTimestamp(int columnIndex, Timestamp x) throws SQLException {
551
+ throw new SQLFeatureNotSupportedException("updates");
552
+ }
553
+
554
+ public void updateAsciiStream(int columnIndex, InputStream x, int length) throws SQLException {
555
+ throw new SQLFeatureNotSupportedException("updates");
556
+ }
557
+
558
+ public void updateBinaryStream(int columnIndex, InputStream x, int length) throws SQLException {
559
+ throw new SQLFeatureNotSupportedException("updates");
560
+ }
561
+
562
+ public void updateCharacterStream(int columnIndex, Reader x, int length) throws SQLException {
563
+ throw new SQLFeatureNotSupportedException("updates");
564
+ }
565
+
566
+ public void updateObject(int columnIndex, Object x, int scaleOrLength) throws SQLException {
567
+ throw new SQLFeatureNotSupportedException("updates");
568
+ }
569
+
570
+ public void updateObject(int columnIndex, Object x) throws SQLException {
571
+ throw new SQLFeatureNotSupportedException("updates");
572
+ }
573
+
574
+ public void updateNull(String columnLabel) throws SQLException {
575
+ throw new SQLFeatureNotSupportedException("updates");
576
+ }
577
+
578
+ public void updateBoolean(String columnLabel, boolean x) throws SQLException {
579
+ throw new SQLFeatureNotSupportedException("updates");
580
+ }
581
+
582
+ public void updateByte(String columnLabel, byte x) throws SQLException {
583
+ throw new SQLFeatureNotSupportedException("updates");
584
+ }
585
+
586
+ public void updateShort(String columnLabel, short x) throws SQLException {
587
+ throw new SQLFeatureNotSupportedException("updates");
588
+ }
589
+
590
+ public void updateInt(String columnLabel, int x) throws SQLException {
591
+ throw new SQLFeatureNotSupportedException("updates");
592
+ }
593
+
594
+ public void updateLong(String columnLabel, long x) throws SQLException {
595
+ throw new SQLFeatureNotSupportedException("updates");
596
+ }
597
+
598
+ public void updateFloat(String columnLabel, float x) throws SQLException {
599
+ throw new SQLFeatureNotSupportedException("updates");
600
+ }
601
+
602
+ public void updateDouble(String columnLabel, double x) throws SQLException {
603
+ throw new SQLFeatureNotSupportedException("updates");
604
+ }
605
+
606
+ public void updateBigDecimal(String columnLabel, BigDecimal x) throws SQLException {
607
+ throw new SQLFeatureNotSupportedException("updates");
608
+ }
609
+
610
+ public void updateString(String columnLabel, String x) throws SQLException {
611
+ throw new SQLFeatureNotSupportedException("updates");
612
+ }
613
+
614
+ public void updateBytes(String columnLabel, byte[] x) throws SQLException {
615
+ throw new SQLFeatureNotSupportedException("updates");
616
+ }
617
+
618
+ public void updateDate(String columnLabel, Date x) throws SQLException {
619
+ throw new SQLFeatureNotSupportedException("updates");
620
+ }
621
+
622
+ public void updateTime(String columnLabel, Time x) throws SQLException {
623
+ throw new SQLFeatureNotSupportedException("updates");
624
+ }
625
+
626
+ public void updateTimestamp(String columnLabel, Timestamp x) throws SQLException {
627
+ throw new SQLFeatureNotSupportedException("updates");
628
+ }
629
+
630
+ public void updateAsciiStream(String columnLabel, InputStream x, int length) throws SQLException {
631
+ throw new SQLFeatureNotSupportedException("updates");
632
+ }
633
+
634
+ public void updateBinaryStream(String columnLabel, InputStream x, int length) throws SQLException {
635
+ throw new SQLFeatureNotSupportedException("updates");
636
+ }
637
+
638
+ public void updateCharacterStream(String columnLabel, Reader reader, int length) throws SQLException {
639
+ throw new SQLFeatureNotSupportedException("updates");
640
+ }
641
+
642
+ public void updateObject(String columnLabel, Object x, int scaleOrLength) throws SQLException {
643
+ throw new SQLFeatureNotSupportedException("updates");
644
+ }
645
+
646
+ public void updateObject(String columnLabel, Object x) throws SQLException {
647
+ throw new SQLFeatureNotSupportedException("updates");
648
+ }
649
+
650
+ public void updateRef(int columnIndex, Ref x) throws SQLException {
651
+ throw new SQLFeatureNotSupportedException("updates");
652
+ }
653
+
654
+ public void updateRef(String columnLabel, Ref x) throws SQLException {
655
+ throw new SQLFeatureNotSupportedException("updates");
656
+ }
657
+
658
+ public void updateBlob(int columnIndex, Blob x) throws SQLException {
659
+ throw new SQLFeatureNotSupportedException("updates");
660
+ }
661
+
662
+ public void updateBlob(String columnLabel, Blob x) throws SQLException {
663
+ throw new SQLFeatureNotSupportedException("updates");
664
+ }
665
+
666
+ public void updateClob(int columnIndex, Clob x) throws SQLException {
667
+ throw new SQLFeatureNotSupportedException("updates");
668
+ }
669
+
670
+ public void updateClob(String columnLabel, Clob x) throws SQLException {
671
+ throw new SQLFeatureNotSupportedException("updates");
672
+ }
673
+
674
+ public void updateArray(int columnIndex, Array x) throws SQLException {
675
+ throw new SQLFeatureNotSupportedException("updates");
676
+ }
677
+
678
+ public void updateArray(String columnLabel, Array x) throws SQLException {
679
+ throw new SQLFeatureNotSupportedException("updates");
680
+ }
681
+
682
+ public void updateRowId(int columnIndex, RowId x) throws SQLException {
683
+ throw new SQLFeatureNotSupportedException("updates");
684
+ }
685
+
686
+ public void updateRowId(String columnLabel, RowId x) throws SQLException {
687
+ throw new SQLFeatureNotSupportedException("updates");
688
+ }
689
+
690
+ public void updateNString(int columnIndex, String nString) throws SQLException {
691
+ throw new SQLFeatureNotSupportedException("updates");
692
+ }
693
+
694
+ public void updateNString(String columnLabel, String nString) throws SQLException {
695
+ throw new SQLFeatureNotSupportedException("updates");
696
+ }
697
+
698
+ public void updateNClob(int columnIndex, NClob nClob) throws SQLException {
699
+ throw new SQLFeatureNotSupportedException("updates");
700
+ }
701
+
702
+ public void updateNClob(String columnLabel, NClob nClob) throws SQLException {
703
+ throw new SQLFeatureNotSupportedException("updates");
704
+ }
705
+
706
+ public void updateSQLXML(int columnIndex, SQLXML xmlObject) throws SQLException {
707
+ throw new SQLFeatureNotSupportedException("updates");
708
+ }
709
+
710
+ public void updateSQLXML(String columnLabel, SQLXML xmlObject) throws SQLException {
711
+ throw new SQLFeatureNotSupportedException("updates");
712
+ }
713
+
714
+ public void updateNCharacterStream(int columnIndex, Reader x, long length) throws SQLException {
715
+ throw new SQLFeatureNotSupportedException("updates");
716
+ }
717
+
718
+ public void updateNCharacterStream(String columnLabel, Reader reader, long length) throws SQLException {
719
+ throw new SQLFeatureNotSupportedException("updates");
720
+ }
721
+
722
+ public void updateAsciiStream(int columnIndex, InputStream x, long length) throws SQLException {
723
+ throw new SQLFeatureNotSupportedException("updates");
724
+ }
725
+
726
+ public void updateBinaryStream(int columnIndex, InputStream x, long length) throws SQLException {
727
+ throw new SQLFeatureNotSupportedException("updates");
728
+ }
729
+
730
+ public void updateCharacterStream(int columnIndex, Reader x, long length) throws SQLException {
731
+ throw new SQLFeatureNotSupportedException("updates");
732
+ }
733
+
734
+ public void updateAsciiStream(String columnLabel, InputStream x, long length) throws SQLException {
735
+ throw new SQLFeatureNotSupportedException("updates");
736
+ }
737
+
738
+ public void updateBinaryStream(String columnLabel, InputStream x, long length) throws SQLException {
739
+ throw new SQLFeatureNotSupportedException("updates");
740
+ }
741
+
742
+ public void updateCharacterStream(String columnLabel, Reader reader, long length) throws SQLException {
743
+ throw new SQLFeatureNotSupportedException("updates");
744
+ }
745
+
746
+ public void updateBlob(int columnIndex, InputStream inputStream, long length) throws SQLException {
747
+ throw new SQLFeatureNotSupportedException("updates");
748
+ }
749
+
750
+ public void updateBlob(String columnLabel, InputStream inputStream, long length) throws SQLException {
751
+ throw new SQLFeatureNotSupportedException("updates");
752
+ }
753
+
754
+ public void updateClob(int columnIndex, Reader reader, long length) throws SQLException {
755
+ throw new SQLFeatureNotSupportedException("updates");
756
+ }
757
+
758
+ public void updateClob(String columnLabel, Reader reader, long length) throws SQLException {
759
+ throw new SQLFeatureNotSupportedException("updates");
760
+ }
761
+
762
+ public void updateNClob(int columnIndex, Reader reader, long length) throws SQLException {
763
+ throw new SQLFeatureNotSupportedException("updates");
764
+ }
765
+
766
+ public void updateNClob(String columnLabel, Reader reader, long length) throws SQLException {
767
+ throw new SQLFeatureNotSupportedException("updates");
768
+ }
769
+
770
+ public void updateNCharacterStream(int columnIndex, Reader x) throws SQLException {
771
+ throw new SQLFeatureNotSupportedException("updates");
772
+ }
773
+
774
+ public void updateNCharacterStream(String columnLabel, Reader reader) throws SQLException {
775
+ throw new SQLFeatureNotSupportedException("updates");
776
+ }
777
+
778
+ public void updateAsciiStream(int columnIndex, InputStream x) throws SQLException {
779
+ throw new SQLFeatureNotSupportedException("updates");
780
+ }
781
+
782
+ public void updateBinaryStream(int columnIndex, InputStream x) throws SQLException {
783
+ throw new SQLFeatureNotSupportedException("updates");
784
+ }
785
+
786
+ public void updateCharacterStream(int columnIndex, Reader x) throws SQLException {
787
+ throw new SQLFeatureNotSupportedException("updates");
788
+ }
789
+
790
+ public void updateAsciiStream(String columnLabel, InputStream x) throws SQLException {
791
+ throw new SQLFeatureNotSupportedException("updates");
792
+ }
793
+
794
+ public void updateBinaryStream(String columnLabel, InputStream x) throws SQLException {
795
+ throw new SQLFeatureNotSupportedException("updates");
796
+ }
797
+
798
+ public void updateCharacterStream(String columnLabel, Reader reader) throws SQLException {
799
+ throw new SQLFeatureNotSupportedException("updates");
800
+ }
801
+
802
+ public void updateBlob(int columnIndex, InputStream inputStream) throws SQLException {
803
+ throw new SQLFeatureNotSupportedException("updates");
804
+ }
805
+
806
+ public void updateBlob(String columnLabel, InputStream inputStream) throws SQLException {
807
+ throw new SQLFeatureNotSupportedException("updates");
808
+ }
809
+
810
+ public void updateClob(int columnIndex, Reader reader) throws SQLException {
811
+ throw new SQLFeatureNotSupportedException("updates");
812
+ }
813
+
814
+ public void updateClob(String columnLabel, Reader reader) throws SQLException {
815
+ throw new SQLFeatureNotSupportedException("updates");
816
+ }
817
+
818
+ public void updateNClob(int columnIndex, Reader reader) throws SQLException {
819
+ throw new SQLFeatureNotSupportedException("updates");
820
+ }
821
+
822
+ public void updateNClob(String columnLabel, Reader reader) throws SQLException {
823
+ throw new SQLFeatureNotSupportedException("updates");
824
+ }
825
+
826
+ }