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.
- checksums.yaml +7 -0
- data/.gitignore +35 -0
- data/.travis.yml +462 -0
- data/.yardopts +4 -0
- data/Appraisals +36 -0
- data/CONTRIBUTING.md +49 -0
- data/Gemfile +68 -0
- data/History.md +1191 -0
- data/LICENSE.txt +25 -0
- data/README.md +277 -0
- data/RUNNING_TESTS.md +88 -0
- data/Rakefile +298 -0
- data/Rakefile.jdbc +20 -0
- data/activerecord-jdbc-adapter.gemspec +63 -0
- data/lib/active_record/connection_adapters/as400_adapter.rb +2 -0
- data/lib/active_record/connection_adapters/db2_adapter.rb +1 -0
- data/lib/active_record/connection_adapters/derby_adapter.rb +1 -0
- data/lib/active_record/connection_adapters/firebird_adapter.rb +1 -0
- data/lib/active_record/connection_adapters/h2_adapter.rb +1 -0
- data/lib/active_record/connection_adapters/hsqldb_adapter.rb +1 -0
- data/lib/active_record/connection_adapters/informix_adapter.rb +1 -0
- data/lib/active_record/connection_adapters/jdbc_adapter.rb +1 -0
- data/lib/active_record/connection_adapters/jndi_adapter.rb +1 -0
- data/lib/active_record/connection_adapters/mariadb_adapter.rb +1 -0
- data/lib/active_record/connection_adapters/mssql_adapter.rb +1 -0
- data/lib/active_record/connection_adapters/mysql2_adapter.rb +1 -0
- data/lib/active_record/connection_adapters/mysql_adapter.rb +1 -0
- data/lib/active_record/connection_adapters/oracle_adapter.rb +1 -0
- data/lib/active_record/connection_adapters/postgresql_adapter.rb +1 -0
- data/lib/active_record/connection_adapters/sqlite3_adapter.rb +1 -0
- data/lib/active_record/connection_adapters/sqlserver_adapter.rb +1 -0
- data/lib/activerecord-jdbc-adapter.rb +1 -0
- data/lib/arel/visitors/compat.rb +64 -0
- data/lib/arel/visitors/db2.rb +137 -0
- data/lib/arel/visitors/derby.rb +112 -0
- data/lib/arel/visitors/firebird.rb +79 -0
- data/lib/arel/visitors/h2.rb +25 -0
- data/lib/arel/visitors/hsqldb.rb +32 -0
- data/lib/arel/visitors/postgresql_jdbc.rb +6 -0
- data/lib/arel/visitors/sql_server.rb +225 -0
- data/lib/arel/visitors/sql_server/ng42.rb +293 -0
- data/lib/arjdbc.rb +22 -0
- data/lib/arjdbc/db2.rb +4 -0
- data/lib/arjdbc/db2/adapter.rb +802 -0
- data/lib/arjdbc/db2/as400.rb +137 -0
- data/lib/arjdbc/db2/column.rb +177 -0
- data/lib/arjdbc/db2/connection_methods.rb +45 -0
- data/lib/arjdbc/derby.rb +3 -0
- data/lib/arjdbc/derby/active_record_patch.rb +13 -0
- data/lib/arjdbc/derby/adapter.rb +567 -0
- data/lib/arjdbc/derby/connection_methods.rb +16 -0
- data/lib/arjdbc/derby/schema_creation.rb +15 -0
- data/lib/arjdbc/discover.rb +104 -0
- data/lib/arjdbc/firebird.rb +4 -0
- data/lib/arjdbc/firebird/adapter.rb +468 -0
- data/lib/arjdbc/firebird/connection_methods.rb +20 -0
- data/lib/arjdbc/h2.rb +3 -0
- data/lib/arjdbc/h2/adapter.rb +335 -0
- data/lib/arjdbc/h2/connection_methods.rb +22 -0
- data/lib/arjdbc/hsqldb.rb +3 -0
- data/lib/arjdbc/hsqldb/adapter.rb +304 -0
- data/lib/arjdbc/hsqldb/connection_methods.rb +23 -0
- data/lib/arjdbc/hsqldb/explain_support.rb +35 -0
- data/lib/arjdbc/hsqldb/schema_creation.rb +11 -0
- data/lib/arjdbc/informix.rb +5 -0
- data/lib/arjdbc/informix/adapter.rb +160 -0
- data/lib/arjdbc/informix/connection_methods.rb +9 -0
- data/lib/arjdbc/jdbc.rb +62 -0
- data/lib/arjdbc/jdbc/adapter.rb +997 -0
- data/lib/arjdbc/jdbc/adapter_require.rb +46 -0
- data/lib/arjdbc/jdbc/arel_support.rb +149 -0
- data/lib/arjdbc/jdbc/base_ext.rb +34 -0
- data/lib/arjdbc/jdbc/callbacks.rb +52 -0
- data/lib/arjdbc/jdbc/column.rb +83 -0
- data/lib/arjdbc/jdbc/connection.rb +26 -0
- data/lib/arjdbc/jdbc/connection_methods.rb +59 -0
- data/lib/arjdbc/jdbc/driver.rb +44 -0
- data/lib/arjdbc/jdbc/error.rb +75 -0
- data/lib/arjdbc/jdbc/extension.rb +69 -0
- data/lib/arjdbc/jdbc/java.rb +13 -0
- data/lib/arjdbc/jdbc/type_cast.rb +154 -0
- data/lib/arjdbc/jdbc/type_converter.rb +142 -0
- data/lib/arjdbc/mssql.rb +7 -0
- data/lib/arjdbc/mssql/adapter.rb +822 -0
- data/lib/arjdbc/mssql/column.rb +207 -0
- data/lib/arjdbc/mssql/connection_methods.rb +72 -0
- data/lib/arjdbc/mssql/explain_support.rb +99 -0
- data/lib/arjdbc/mssql/limit_helpers.rb +231 -0
- data/lib/arjdbc/mssql/lock_methods.rb +77 -0
- data/lib/arjdbc/mssql/types.rb +343 -0
- data/lib/arjdbc/mssql/utils.rb +82 -0
- data/lib/arjdbc/mysql.rb +3 -0
- data/lib/arjdbc/mysql/adapter.rb +998 -0
- data/lib/arjdbc/mysql/bulk_change_table.rb +150 -0
- data/lib/arjdbc/mysql/column.rb +167 -0
- data/lib/arjdbc/mysql/connection_methods.rb +137 -0
- data/lib/arjdbc/mysql/explain_support.rb +82 -0
- data/lib/arjdbc/mysql/schema_creation.rb +58 -0
- data/lib/arjdbc/oracle.rb +4 -0
- data/lib/arjdbc/oracle/adapter.rb +968 -0
- data/lib/arjdbc/oracle/column.rb +136 -0
- data/lib/arjdbc/oracle/connection_methods.rb +21 -0
- data/lib/arjdbc/postgresql.rb +3 -0
- data/lib/arjdbc/postgresql/_bc_time_cast_patch.rb +21 -0
- data/lib/arjdbc/postgresql/adapter.rb +1498 -0
- data/lib/arjdbc/postgresql/base/array_parser.rb +95 -0
- data/lib/arjdbc/postgresql/base/oid.rb +412 -0
- data/lib/arjdbc/postgresql/base/pgconn.rb +8 -0
- data/lib/arjdbc/postgresql/base/schema_definitions.rb +132 -0
- data/lib/arjdbc/postgresql/column.rb +640 -0
- data/lib/arjdbc/postgresql/connection_methods.rb +44 -0
- data/lib/arjdbc/postgresql/explain_support.rb +53 -0
- data/lib/arjdbc/postgresql/oid/bytea.rb +3 -0
- data/lib/arjdbc/postgresql/oid_types.rb +265 -0
- data/lib/arjdbc/postgresql/schema_creation.rb +60 -0
- data/lib/arjdbc/railtie.rb +11 -0
- data/lib/arjdbc/sqlite3.rb +3 -0
- data/lib/arjdbc/sqlite3/adapter.rb +654 -0
- data/lib/arjdbc/sqlite3/connection_methods.rb +36 -0
- data/lib/arjdbc/sqlite3/explain_support.rb +29 -0
- data/lib/arjdbc/sybase.rb +2 -0
- data/lib/arjdbc/sybase/adapter.rb +47 -0
- data/lib/arjdbc/tasks.rb +13 -0
- data/lib/arjdbc/tasks/database_tasks.rb +66 -0
- data/lib/arjdbc/tasks/databases.rake +91 -0
- data/lib/arjdbc/tasks/databases3.rake +239 -0
- data/lib/arjdbc/tasks/databases4.rake +39 -0
- data/lib/arjdbc/tasks/db2_database_tasks.rb +104 -0
- data/lib/arjdbc/tasks/derby_database_tasks.rb +95 -0
- data/lib/arjdbc/tasks/h2_database_tasks.rb +31 -0
- data/lib/arjdbc/tasks/hsqldb_database_tasks.rb +70 -0
- data/lib/arjdbc/tasks/jdbc_database_tasks.rb +169 -0
- data/lib/arjdbc/tasks/mssql_database_tasks.rb +46 -0
- data/lib/arjdbc/tasks/oracle/enhanced_structure_dump.rb +297 -0
- data/lib/arjdbc/tasks/oracle_database_tasks.rb +65 -0
- data/lib/arjdbc/util/quoted_cache.rb +60 -0
- data/lib/arjdbc/util/serialized_attributes.rb +98 -0
- data/lib/arjdbc/util/table_copier.rb +108 -0
- data/lib/arjdbc/version.rb +8 -0
- data/lib/generators/jdbc/USAGE +9 -0
- data/lib/generators/jdbc/jdbc_generator.rb +17 -0
- data/pom.xml +285 -0
- data/rails_generators/jdbc_generator.rb +15 -0
- data/rails_generators/templates/config/initializers/jdbc.rb +10 -0
- data/rails_generators/templates/lib/tasks/jdbc.rake +11 -0
- data/rakelib/01-tomcat.rake +51 -0
- data/rakelib/02-test.rake +151 -0
- data/rakelib/bundler_ext.rb +11 -0
- data/rakelib/db.rake +58 -0
- data/rakelib/rails.rake +77 -0
- data/src/java/arjdbc/ArJdbcModule.java +288 -0
- data/src/java/arjdbc/db2/DB2Module.java +77 -0
- data/src/java/arjdbc/db2/DB2RubyJdbcConnection.java +128 -0
- data/src/java/arjdbc/derby/DerbyModule.java +180 -0
- data/src/java/arjdbc/derby/DerbyRubyJdbcConnection.java +153 -0
- data/src/java/arjdbc/firebird/FirebirdRubyJdbcConnection.java +190 -0
- data/src/java/arjdbc/h2/H2Module.java +50 -0
- data/src/java/arjdbc/h2/H2RubyJdbcConnection.java +86 -0
- data/src/java/arjdbc/hsqldb/HSQLDBModule.java +74 -0
- data/src/java/arjdbc/informix/InformixRubyJdbcConnection.java +76 -0
- data/src/java/arjdbc/jdbc/AdapterJavaService.java +43 -0
- data/src/java/arjdbc/jdbc/Callable.java +44 -0
- data/src/java/arjdbc/jdbc/ConnectionFactory.java +77 -0
- data/src/java/arjdbc/jdbc/DataSourceConnectionFactory.java +156 -0
- data/src/java/arjdbc/jdbc/DriverConnectionFactory.java +63 -0
- data/src/java/arjdbc/jdbc/DriverWrapper.java +128 -0
- data/src/java/arjdbc/jdbc/JdbcConnectionFactory.java +32 -0
- data/src/java/arjdbc/jdbc/RubyJdbcConnection.java +4541 -0
- data/src/java/arjdbc/jdbc/SQLBlock.java +54 -0
- data/src/java/arjdbc/jdbc/WithResultSet.java +37 -0
- data/src/java/arjdbc/mssql/MSSQLModule.java +91 -0
- data/src/java/arjdbc/mssql/MSSQLRubyJdbcConnection.java +193 -0
- data/src/java/arjdbc/mysql/MySQLModule.java +140 -0
- data/src/java/arjdbc/mysql/MySQLRubyJdbcConnection.java +456 -0
- data/src/java/arjdbc/oracle/OracleModule.java +81 -0
- data/src/java/arjdbc/oracle/OracleRubyJdbcConnection.java +477 -0
- data/src/java/arjdbc/postgresql/ByteaUtils.java +171 -0
- data/src/java/arjdbc/postgresql/DriverImplementation.java +78 -0
- data/src/java/arjdbc/postgresql/PGDriverImplementation.java +535 -0
- data/src/java/arjdbc/postgresql/PostgreSQLModule.java +189 -0
- data/src/java/arjdbc/postgresql/PostgreSQLRubyJdbcConnection.java +489 -0
- data/src/java/arjdbc/sqlite3/SQLite3Module.java +93 -0
- data/src/java/arjdbc/sqlite3/SQLite3RubyJdbcConnection.java +405 -0
- data/src/java/arjdbc/util/CallResultSet.java +826 -0
- data/src/java/arjdbc/util/DateTimeUtils.java +517 -0
- data/src/java/arjdbc/util/NumberUtils.java +50 -0
- data/src/java/arjdbc/util/ObjectSupport.java +65 -0
- data/src/java/arjdbc/util/QuotingUtils.java +139 -0
- data/src/java/arjdbc/util/StringCache.java +60 -0
- data/src/java/arjdbc/util/StringHelper.java +155 -0
- metadata +288 -0
@@ -0,0 +1,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
|
+
}
|