franta-hg@171
|
1 |
/**
|
franta-hg@171
|
2 |
* SQL-DK
|
franta-hg@171
|
3 |
* Copyright © 2014 František Kučera (frantovo.cz)
|
franta-hg@171
|
4 |
*
|
franta-hg@171
|
5 |
* This program is free software: you can redistribute it and/or modify
|
franta-hg@171
|
6 |
* it under the terms of the GNU General Public License as published by
|
franta-hg@171
|
7 |
* the Free Software Foundation, either version 3 of the License, or
|
franta-hg@171
|
8 |
* (at your option) any later version.
|
franta-hg@171
|
9 |
*
|
franta-hg@171
|
10 |
* This program is distributed in the hope that it will be useful,
|
franta-hg@171
|
11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
franta-hg@171
|
12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
franta-hg@171
|
13 |
* GNU General Public License for more details.
|
franta-hg@171
|
14 |
*
|
franta-hg@171
|
15 |
* You should have received a copy of the GNU General Public License
|
franta-hg@171
|
16 |
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
franta-hg@171
|
17 |
*/
|
franta-hg@171
|
18 |
package info.globalcode.jdbc.loopback;
|
franta-hg@171
|
19 |
|
franta-hg@171
|
20 |
import java.io.InputStream;
|
franta-hg@171
|
21 |
import java.io.Reader;
|
franta-hg@171
|
22 |
import java.math.BigDecimal;
|
franta-hg@171
|
23 |
import java.net.URL;
|
franta-hg@171
|
24 |
import java.sql.Array;
|
franta-hg@171
|
25 |
import java.sql.Blob;
|
franta-hg@171
|
26 |
import java.sql.Clob;
|
franta-hg@171
|
27 |
import java.sql.Date;
|
franta-hg@171
|
28 |
import java.sql.NClob;
|
franta-hg@171
|
29 |
import java.sql.Ref;
|
franta-hg@171
|
30 |
import java.sql.RowId;
|
franta-hg@171
|
31 |
import java.sql.SQLException;
|
franta-hg@171
|
32 |
import java.sql.SQLWarning;
|
franta-hg@171
|
33 |
import java.sql.SQLXML;
|
franta-hg@171
|
34 |
import java.sql.Statement;
|
franta-hg@171
|
35 |
import java.sql.Time;
|
franta-hg@171
|
36 |
import java.sql.Timestamp;
|
franta-hg@171
|
37 |
import java.util.Calendar;
|
franta-hg@171
|
38 |
import java.util.Map;
|
franta-hg@171
|
39 |
|
franta-hg@171
|
40 |
/**
|
franta-hg@171
|
41 |
*
|
franta-hg@171
|
42 |
* @author Ing. František Kučera (frantovo.cz)
|
franta-hg@171
|
43 |
*/
|
franta-hg@171
|
44 |
public abstract class AbstractResultSet implements java.sql.ResultSet {
|
franta-hg@171
|
45 |
|
franta-hg@171
|
46 |
@Override
|
franta-hg@171
|
47 |
public boolean next() throws SQLException {
|
franta-hg@171
|
48 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
49 |
}
|
franta-hg@171
|
50 |
|
franta-hg@171
|
51 |
@Override
|
franta-hg@171
|
52 |
public void close() throws SQLException {
|
franta-hg@171
|
53 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
54 |
}
|
franta-hg@171
|
55 |
|
franta-hg@171
|
56 |
@Override
|
franta-hg@171
|
57 |
public boolean wasNull() throws SQLException {
|
franta-hg@171
|
58 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
59 |
}
|
franta-hg@171
|
60 |
|
franta-hg@171
|
61 |
@Override
|
franta-hg@171
|
62 |
public String getString(int columnIndex) throws SQLException {
|
franta-hg@171
|
63 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
64 |
}
|
franta-hg@171
|
65 |
|
franta-hg@171
|
66 |
@Override
|
franta-hg@171
|
67 |
public boolean getBoolean(int columnIndex) throws SQLException {
|
franta-hg@171
|
68 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
69 |
}
|
franta-hg@171
|
70 |
|
franta-hg@171
|
71 |
@Override
|
franta-hg@171
|
72 |
public byte getByte(int columnIndex) throws SQLException {
|
franta-hg@171
|
73 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
74 |
}
|
franta-hg@171
|
75 |
|
franta-hg@171
|
76 |
@Override
|
franta-hg@171
|
77 |
public short getShort(int columnIndex) throws SQLException {
|
franta-hg@171
|
78 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
79 |
}
|
franta-hg@171
|
80 |
|
franta-hg@171
|
81 |
@Override
|
franta-hg@171
|
82 |
public int getInt(int columnIndex) throws SQLException {
|
franta-hg@171
|
83 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
84 |
}
|
franta-hg@171
|
85 |
|
franta-hg@171
|
86 |
@Override
|
franta-hg@171
|
87 |
public long getLong(int columnIndex) throws SQLException {
|
franta-hg@171
|
88 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
89 |
}
|
franta-hg@171
|
90 |
|
franta-hg@171
|
91 |
@Override
|
franta-hg@171
|
92 |
public float getFloat(int columnIndex) throws SQLException {
|
franta-hg@171
|
93 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
94 |
}
|
franta-hg@171
|
95 |
|
franta-hg@171
|
96 |
@Override
|
franta-hg@171
|
97 |
public double getDouble(int columnIndex) throws SQLException {
|
franta-hg@171
|
98 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
99 |
}
|
franta-hg@171
|
100 |
|
franta-hg@171
|
101 |
@Override
|
franta-hg@171
|
102 |
public BigDecimal getBigDecimal(int columnIndex, int scale) throws SQLException {
|
franta-hg@171
|
103 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
104 |
}
|
franta-hg@171
|
105 |
|
franta-hg@171
|
106 |
@Override
|
franta-hg@171
|
107 |
public byte[] getBytes(int columnIndex) throws SQLException {
|
franta-hg@171
|
108 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
109 |
}
|
franta-hg@171
|
110 |
|
franta-hg@171
|
111 |
@Override
|
franta-hg@171
|
112 |
public Date getDate(int columnIndex) throws SQLException {
|
franta-hg@171
|
113 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
114 |
}
|
franta-hg@171
|
115 |
|
franta-hg@171
|
116 |
@Override
|
franta-hg@171
|
117 |
public Time getTime(int columnIndex) throws SQLException {
|
franta-hg@171
|
118 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
119 |
}
|
franta-hg@171
|
120 |
|
franta-hg@171
|
121 |
@Override
|
franta-hg@171
|
122 |
public Timestamp getTimestamp(int columnIndex) throws SQLException {
|
franta-hg@171
|
123 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
124 |
}
|
franta-hg@171
|
125 |
|
franta-hg@171
|
126 |
@Override
|
franta-hg@171
|
127 |
public InputStream getAsciiStream(int columnIndex) throws SQLException {
|
franta-hg@171
|
128 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
129 |
}
|
franta-hg@171
|
130 |
|
franta-hg@171
|
131 |
@Override
|
franta-hg@171
|
132 |
public InputStream getUnicodeStream(int columnIndex) throws SQLException {
|
franta-hg@171
|
133 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
134 |
}
|
franta-hg@171
|
135 |
|
franta-hg@171
|
136 |
@Override
|
franta-hg@171
|
137 |
public InputStream getBinaryStream(int columnIndex) throws SQLException {
|
franta-hg@171
|
138 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
139 |
}
|
franta-hg@171
|
140 |
|
franta-hg@171
|
141 |
@Override
|
franta-hg@171
|
142 |
public String getString(String columnLabel) throws SQLException {
|
franta-hg@171
|
143 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
144 |
}
|
franta-hg@171
|
145 |
|
franta-hg@171
|
146 |
@Override
|
franta-hg@171
|
147 |
public boolean getBoolean(String columnLabel) throws SQLException {
|
franta-hg@171
|
148 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
149 |
}
|
franta-hg@171
|
150 |
|
franta-hg@171
|
151 |
@Override
|
franta-hg@171
|
152 |
public byte getByte(String columnLabel) throws SQLException {
|
franta-hg@171
|
153 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
154 |
}
|
franta-hg@171
|
155 |
|
franta-hg@171
|
156 |
@Override
|
franta-hg@171
|
157 |
public short getShort(String columnLabel) throws SQLException {
|
franta-hg@171
|
158 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
159 |
}
|
franta-hg@171
|
160 |
|
franta-hg@171
|
161 |
@Override
|
franta-hg@171
|
162 |
public int getInt(String columnLabel) throws SQLException {
|
franta-hg@171
|
163 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
164 |
}
|
franta-hg@171
|
165 |
|
franta-hg@171
|
166 |
@Override
|
franta-hg@171
|
167 |
public long getLong(String columnLabel) throws SQLException {
|
franta-hg@171
|
168 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
169 |
}
|
franta-hg@171
|
170 |
|
franta-hg@171
|
171 |
@Override
|
franta-hg@171
|
172 |
public float getFloat(String columnLabel) throws SQLException {
|
franta-hg@171
|
173 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
174 |
}
|
franta-hg@171
|
175 |
|
franta-hg@171
|
176 |
@Override
|
franta-hg@171
|
177 |
public double getDouble(String columnLabel) throws SQLException {
|
franta-hg@171
|
178 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
179 |
}
|
franta-hg@171
|
180 |
|
franta-hg@171
|
181 |
@Override
|
franta-hg@171
|
182 |
public BigDecimal getBigDecimal(String columnLabel, int scale) throws SQLException {
|
franta-hg@171
|
183 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
184 |
}
|
franta-hg@171
|
185 |
|
franta-hg@171
|
186 |
@Override
|
franta-hg@171
|
187 |
public byte[] getBytes(String columnLabel) throws SQLException {
|
franta-hg@171
|
188 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
189 |
}
|
franta-hg@171
|
190 |
|
franta-hg@171
|
191 |
@Override
|
franta-hg@171
|
192 |
public Date getDate(String columnLabel) throws SQLException {
|
franta-hg@171
|
193 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
194 |
}
|
franta-hg@171
|
195 |
|
franta-hg@171
|
196 |
@Override
|
franta-hg@171
|
197 |
public Time getTime(String columnLabel) throws SQLException {
|
franta-hg@171
|
198 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
199 |
}
|
franta-hg@171
|
200 |
|
franta-hg@171
|
201 |
@Override
|
franta-hg@171
|
202 |
public Timestamp getTimestamp(String columnLabel) throws SQLException {
|
franta-hg@171
|
203 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
204 |
}
|
franta-hg@171
|
205 |
|
franta-hg@171
|
206 |
@Override
|
franta-hg@171
|
207 |
public InputStream getAsciiStream(String columnLabel) throws SQLException {
|
franta-hg@171
|
208 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
209 |
}
|
franta-hg@171
|
210 |
|
franta-hg@171
|
211 |
@Override
|
franta-hg@171
|
212 |
public InputStream getUnicodeStream(String columnLabel) throws SQLException {
|
franta-hg@171
|
213 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
214 |
}
|
franta-hg@171
|
215 |
|
franta-hg@171
|
216 |
@Override
|
franta-hg@171
|
217 |
public InputStream getBinaryStream(String columnLabel) throws SQLException {
|
franta-hg@171
|
218 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
219 |
}
|
franta-hg@171
|
220 |
|
franta-hg@171
|
221 |
@Override
|
franta-hg@171
|
222 |
public SQLWarning getWarnings() throws SQLException {
|
franta-hg@171
|
223 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
224 |
}
|
franta-hg@171
|
225 |
|
franta-hg@171
|
226 |
@Override
|
franta-hg@171
|
227 |
public void clearWarnings() throws SQLException {
|
franta-hg@171
|
228 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
229 |
}
|
franta-hg@171
|
230 |
|
franta-hg@171
|
231 |
@Override
|
franta-hg@171
|
232 |
public String getCursorName() throws SQLException {
|
franta-hg@171
|
233 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
234 |
}
|
franta-hg@171
|
235 |
|
franta-hg@171
|
236 |
@Override
|
franta-hg@171
|
237 |
public java.sql.ResultSetMetaData getMetaData() throws SQLException {
|
franta-hg@171
|
238 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
239 |
}
|
franta-hg@171
|
240 |
|
franta-hg@171
|
241 |
@Override
|
franta-hg@171
|
242 |
public Object getObject(int columnIndex) throws SQLException {
|
franta-hg@171
|
243 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
244 |
}
|
franta-hg@171
|
245 |
|
franta-hg@171
|
246 |
@Override
|
franta-hg@171
|
247 |
public Object getObject(String columnLabel) throws SQLException {
|
franta-hg@171
|
248 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
249 |
}
|
franta-hg@171
|
250 |
|
franta-hg@171
|
251 |
@Override
|
franta-hg@171
|
252 |
public int findColumn(String columnLabel) throws SQLException {
|
franta-hg@171
|
253 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
254 |
}
|
franta-hg@171
|
255 |
|
franta-hg@171
|
256 |
@Override
|
franta-hg@171
|
257 |
public Reader getCharacterStream(int columnIndex) throws SQLException {
|
franta-hg@171
|
258 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
259 |
}
|
franta-hg@171
|
260 |
|
franta-hg@171
|
261 |
@Override
|
franta-hg@171
|
262 |
public Reader getCharacterStream(String columnLabel) throws SQLException {
|
franta-hg@171
|
263 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
264 |
}
|
franta-hg@171
|
265 |
|
franta-hg@171
|
266 |
@Override
|
franta-hg@171
|
267 |
public BigDecimal getBigDecimal(int columnIndex) throws SQLException {
|
franta-hg@171
|
268 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
269 |
}
|
franta-hg@171
|
270 |
|
franta-hg@171
|
271 |
@Override
|
franta-hg@171
|
272 |
public BigDecimal getBigDecimal(String columnLabel) throws SQLException {
|
franta-hg@171
|
273 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
274 |
}
|
franta-hg@171
|
275 |
|
franta-hg@171
|
276 |
@Override
|
franta-hg@171
|
277 |
public boolean isBeforeFirst() throws SQLException {
|
franta-hg@171
|
278 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
279 |
}
|
franta-hg@171
|
280 |
|
franta-hg@171
|
281 |
@Override
|
franta-hg@171
|
282 |
public boolean isAfterLast() throws SQLException {
|
franta-hg@171
|
283 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
284 |
}
|
franta-hg@171
|
285 |
|
franta-hg@171
|
286 |
@Override
|
franta-hg@171
|
287 |
public boolean isFirst() throws SQLException {
|
franta-hg@171
|
288 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
289 |
}
|
franta-hg@171
|
290 |
|
franta-hg@171
|
291 |
@Override
|
franta-hg@171
|
292 |
public boolean isLast() throws SQLException {
|
franta-hg@171
|
293 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
294 |
}
|
franta-hg@171
|
295 |
|
franta-hg@171
|
296 |
@Override
|
franta-hg@171
|
297 |
public void beforeFirst() throws SQLException {
|
franta-hg@171
|
298 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
299 |
}
|
franta-hg@171
|
300 |
|
franta-hg@171
|
301 |
@Override
|
franta-hg@171
|
302 |
public void afterLast() throws SQLException {
|
franta-hg@171
|
303 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
304 |
}
|
franta-hg@171
|
305 |
|
franta-hg@171
|
306 |
@Override
|
franta-hg@171
|
307 |
public boolean first() throws SQLException {
|
franta-hg@171
|
308 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
309 |
}
|
franta-hg@171
|
310 |
|
franta-hg@171
|
311 |
@Override
|
franta-hg@171
|
312 |
public boolean last() throws SQLException {
|
franta-hg@171
|
313 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
314 |
}
|
franta-hg@171
|
315 |
|
franta-hg@171
|
316 |
@Override
|
franta-hg@171
|
317 |
public int getRow() throws SQLException {
|
franta-hg@171
|
318 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
319 |
}
|
franta-hg@171
|
320 |
|
franta-hg@171
|
321 |
@Override
|
franta-hg@171
|
322 |
public boolean absolute(int row) throws SQLException {
|
franta-hg@171
|
323 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
324 |
}
|
franta-hg@171
|
325 |
|
franta-hg@171
|
326 |
@Override
|
franta-hg@171
|
327 |
public boolean relative(int rows) throws SQLException {
|
franta-hg@171
|
328 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
329 |
}
|
franta-hg@171
|
330 |
|
franta-hg@171
|
331 |
@Override
|
franta-hg@171
|
332 |
public boolean previous() throws SQLException {
|
franta-hg@171
|
333 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
334 |
}
|
franta-hg@171
|
335 |
|
franta-hg@171
|
336 |
@Override
|
franta-hg@171
|
337 |
public void setFetchDirection(int direction) throws SQLException {
|
franta-hg@171
|
338 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
339 |
}
|
franta-hg@171
|
340 |
|
franta-hg@171
|
341 |
@Override
|
franta-hg@171
|
342 |
public int getFetchDirection() throws SQLException {
|
franta-hg@171
|
343 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
344 |
}
|
franta-hg@171
|
345 |
|
franta-hg@171
|
346 |
@Override
|
franta-hg@171
|
347 |
public void setFetchSize(int rows) throws SQLException {
|
franta-hg@171
|
348 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
349 |
}
|
franta-hg@171
|
350 |
|
franta-hg@171
|
351 |
@Override
|
franta-hg@171
|
352 |
public int getFetchSize() throws SQLException {
|
franta-hg@171
|
353 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
354 |
}
|
franta-hg@171
|
355 |
|
franta-hg@171
|
356 |
@Override
|
franta-hg@171
|
357 |
public int getType() throws SQLException {
|
franta-hg@171
|
358 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
359 |
}
|
franta-hg@171
|
360 |
|
franta-hg@171
|
361 |
@Override
|
franta-hg@171
|
362 |
public int getConcurrency() throws SQLException {
|
franta-hg@171
|
363 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
364 |
}
|
franta-hg@171
|
365 |
|
franta-hg@171
|
366 |
@Override
|
franta-hg@171
|
367 |
public boolean rowUpdated() throws SQLException {
|
franta-hg@171
|
368 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
369 |
}
|
franta-hg@171
|
370 |
|
franta-hg@171
|
371 |
@Override
|
franta-hg@171
|
372 |
public boolean rowInserted() throws SQLException {
|
franta-hg@171
|
373 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
374 |
}
|
franta-hg@171
|
375 |
|
franta-hg@171
|
376 |
@Override
|
franta-hg@171
|
377 |
public boolean rowDeleted() throws SQLException {
|
franta-hg@171
|
378 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
379 |
}
|
franta-hg@171
|
380 |
|
franta-hg@171
|
381 |
@Override
|
franta-hg@171
|
382 |
public void updateNull(int columnIndex) throws SQLException {
|
franta-hg@171
|
383 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
384 |
}
|
franta-hg@171
|
385 |
|
franta-hg@171
|
386 |
@Override
|
franta-hg@171
|
387 |
public void updateBoolean(int columnIndex, boolean x) throws SQLException {
|
franta-hg@171
|
388 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
389 |
}
|
franta-hg@171
|
390 |
|
franta-hg@171
|
391 |
@Override
|
franta-hg@171
|
392 |
public void updateByte(int columnIndex, byte x) throws SQLException {
|
franta-hg@171
|
393 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
394 |
}
|
franta-hg@171
|
395 |
|
franta-hg@171
|
396 |
@Override
|
franta-hg@171
|
397 |
public void updateShort(int columnIndex, short x) throws SQLException {
|
franta-hg@171
|
398 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
399 |
}
|
franta-hg@171
|
400 |
|
franta-hg@171
|
401 |
@Override
|
franta-hg@171
|
402 |
public void updateInt(int columnIndex, int x) throws SQLException {
|
franta-hg@171
|
403 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
404 |
}
|
franta-hg@171
|
405 |
|
franta-hg@171
|
406 |
@Override
|
franta-hg@171
|
407 |
public void updateLong(int columnIndex, long x) throws SQLException {
|
franta-hg@171
|
408 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
409 |
}
|
franta-hg@171
|
410 |
|
franta-hg@171
|
411 |
@Override
|
franta-hg@171
|
412 |
public void updateFloat(int columnIndex, float x) throws SQLException {
|
franta-hg@171
|
413 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
414 |
}
|
franta-hg@171
|
415 |
|
franta-hg@171
|
416 |
@Override
|
franta-hg@171
|
417 |
public void updateDouble(int columnIndex, double x) throws SQLException {
|
franta-hg@171
|
418 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
419 |
}
|
franta-hg@171
|
420 |
|
franta-hg@171
|
421 |
@Override
|
franta-hg@171
|
422 |
public void updateBigDecimal(int columnIndex, BigDecimal x) throws SQLException {
|
franta-hg@171
|
423 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
424 |
}
|
franta-hg@171
|
425 |
|
franta-hg@171
|
426 |
@Override
|
franta-hg@171
|
427 |
public void updateString(int columnIndex, String x) throws SQLException {
|
franta-hg@171
|
428 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
429 |
}
|
franta-hg@171
|
430 |
|
franta-hg@171
|
431 |
@Override
|
franta-hg@171
|
432 |
public void updateBytes(int columnIndex, byte[] x) throws SQLException {
|
franta-hg@171
|
433 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
434 |
}
|
franta-hg@171
|
435 |
|
franta-hg@171
|
436 |
@Override
|
franta-hg@171
|
437 |
public void updateDate(int columnIndex, Date x) throws SQLException {
|
franta-hg@171
|
438 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
439 |
}
|
franta-hg@171
|
440 |
|
franta-hg@171
|
441 |
@Override
|
franta-hg@171
|
442 |
public void updateTime(int columnIndex, Time x) throws SQLException {
|
franta-hg@171
|
443 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
444 |
}
|
franta-hg@171
|
445 |
|
franta-hg@171
|
446 |
@Override
|
franta-hg@171
|
447 |
public void updateTimestamp(int columnIndex, Timestamp x) throws SQLException {
|
franta-hg@171
|
448 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
449 |
}
|
franta-hg@171
|
450 |
|
franta-hg@171
|
451 |
@Override
|
franta-hg@171
|
452 |
public void updateAsciiStream(int columnIndex, InputStream x, int length) throws SQLException {
|
franta-hg@171
|
453 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
454 |
}
|
franta-hg@171
|
455 |
|
franta-hg@171
|
456 |
@Override
|
franta-hg@171
|
457 |
public void updateBinaryStream(int columnIndex, InputStream x, int length) throws SQLException {
|
franta-hg@171
|
458 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
459 |
}
|
franta-hg@171
|
460 |
|
franta-hg@171
|
461 |
@Override
|
franta-hg@171
|
462 |
public void updateCharacterStream(int columnIndex, Reader x, int length) throws SQLException {
|
franta-hg@171
|
463 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
464 |
}
|
franta-hg@171
|
465 |
|
franta-hg@171
|
466 |
@Override
|
franta-hg@171
|
467 |
public void updateObject(int columnIndex, Object x, int scaleOrLength) throws SQLException {
|
franta-hg@171
|
468 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
469 |
}
|
franta-hg@171
|
470 |
|
franta-hg@171
|
471 |
@Override
|
franta-hg@171
|
472 |
public void updateObject(int columnIndex, Object x) throws SQLException {
|
franta-hg@171
|
473 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
474 |
}
|
franta-hg@171
|
475 |
|
franta-hg@171
|
476 |
@Override
|
franta-hg@171
|
477 |
public void updateNull(String columnLabel) throws SQLException {
|
franta-hg@171
|
478 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
479 |
}
|
franta-hg@171
|
480 |
|
franta-hg@171
|
481 |
@Override
|
franta-hg@171
|
482 |
public void updateBoolean(String columnLabel, boolean x) throws SQLException {
|
franta-hg@171
|
483 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
484 |
}
|
franta-hg@171
|
485 |
|
franta-hg@171
|
486 |
@Override
|
franta-hg@171
|
487 |
public void updateByte(String columnLabel, byte x) throws SQLException {
|
franta-hg@171
|
488 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
489 |
}
|
franta-hg@171
|
490 |
|
franta-hg@171
|
491 |
@Override
|
franta-hg@171
|
492 |
public void updateShort(String columnLabel, short x) throws SQLException {
|
franta-hg@171
|
493 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
494 |
}
|
franta-hg@171
|
495 |
|
franta-hg@171
|
496 |
@Override
|
franta-hg@171
|
497 |
public void updateInt(String columnLabel, int x) throws SQLException {
|
franta-hg@171
|
498 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
499 |
}
|
franta-hg@171
|
500 |
|
franta-hg@171
|
501 |
@Override
|
franta-hg@171
|
502 |
public void updateLong(String columnLabel, long x) throws SQLException {
|
franta-hg@171
|
503 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
504 |
}
|
franta-hg@171
|
505 |
|
franta-hg@171
|
506 |
@Override
|
franta-hg@171
|
507 |
public void updateFloat(String columnLabel, float x) throws SQLException {
|
franta-hg@171
|
508 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
509 |
}
|
franta-hg@171
|
510 |
|
franta-hg@171
|
511 |
@Override
|
franta-hg@171
|
512 |
public void updateDouble(String columnLabel, double x) throws SQLException {
|
franta-hg@171
|
513 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
514 |
}
|
franta-hg@171
|
515 |
|
franta-hg@171
|
516 |
@Override
|
franta-hg@171
|
517 |
public void updateBigDecimal(String columnLabel, BigDecimal x) throws SQLException {
|
franta-hg@171
|
518 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
519 |
}
|
franta-hg@171
|
520 |
|
franta-hg@171
|
521 |
@Override
|
franta-hg@171
|
522 |
public void updateString(String columnLabel, String x) throws SQLException {
|
franta-hg@171
|
523 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
524 |
}
|
franta-hg@171
|
525 |
|
franta-hg@171
|
526 |
@Override
|
franta-hg@171
|
527 |
public void updateBytes(String columnLabel, byte[] x) throws SQLException {
|
franta-hg@171
|
528 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
529 |
}
|
franta-hg@171
|
530 |
|
franta-hg@171
|
531 |
@Override
|
franta-hg@171
|
532 |
public void updateDate(String columnLabel, Date x) throws SQLException {
|
franta-hg@171
|
533 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
534 |
}
|
franta-hg@171
|
535 |
|
franta-hg@171
|
536 |
@Override
|
franta-hg@171
|
537 |
public void updateTime(String columnLabel, Time x) throws SQLException {
|
franta-hg@171
|
538 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
539 |
}
|
franta-hg@171
|
540 |
|
franta-hg@171
|
541 |
@Override
|
franta-hg@171
|
542 |
public void updateTimestamp(String columnLabel, Timestamp x) throws SQLException {
|
franta-hg@171
|
543 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
544 |
}
|
franta-hg@171
|
545 |
|
franta-hg@171
|
546 |
@Override
|
franta-hg@171
|
547 |
public void updateAsciiStream(String columnLabel, InputStream x, int length) throws SQLException {
|
franta-hg@171
|
548 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
549 |
}
|
franta-hg@171
|
550 |
|
franta-hg@171
|
551 |
@Override
|
franta-hg@171
|
552 |
public void updateBinaryStream(String columnLabel, InputStream x, int length) throws SQLException {
|
franta-hg@171
|
553 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
554 |
}
|
franta-hg@171
|
555 |
|
franta-hg@171
|
556 |
@Override
|
franta-hg@171
|
557 |
public void updateCharacterStream(String columnLabel, Reader reader, int length) throws SQLException {
|
franta-hg@171
|
558 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
559 |
}
|
franta-hg@171
|
560 |
|
franta-hg@171
|
561 |
@Override
|
franta-hg@171
|
562 |
public void updateObject(String columnLabel, Object x, int scaleOrLength) throws SQLException {
|
franta-hg@171
|
563 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
564 |
}
|
franta-hg@171
|
565 |
|
franta-hg@171
|
566 |
@Override
|
franta-hg@171
|
567 |
public void updateObject(String columnLabel, Object x) throws SQLException {
|
franta-hg@171
|
568 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
569 |
}
|
franta-hg@171
|
570 |
|
franta-hg@171
|
571 |
@Override
|
franta-hg@171
|
572 |
public void insertRow() throws SQLException {
|
franta-hg@171
|
573 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
574 |
}
|
franta-hg@171
|
575 |
|
franta-hg@171
|
576 |
@Override
|
franta-hg@171
|
577 |
public void updateRow() throws SQLException {
|
franta-hg@171
|
578 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
579 |
}
|
franta-hg@171
|
580 |
|
franta-hg@171
|
581 |
@Override
|
franta-hg@171
|
582 |
public void deleteRow() throws SQLException {
|
franta-hg@171
|
583 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
584 |
}
|
franta-hg@171
|
585 |
|
franta-hg@171
|
586 |
@Override
|
franta-hg@171
|
587 |
public void refreshRow() throws SQLException {
|
franta-hg@171
|
588 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
589 |
}
|
franta-hg@171
|
590 |
|
franta-hg@171
|
591 |
@Override
|
franta-hg@171
|
592 |
public void cancelRowUpdates() throws SQLException {
|
franta-hg@171
|
593 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
594 |
}
|
franta-hg@171
|
595 |
|
franta-hg@171
|
596 |
@Override
|
franta-hg@171
|
597 |
public void moveToInsertRow() throws SQLException {
|
franta-hg@171
|
598 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
599 |
}
|
franta-hg@171
|
600 |
|
franta-hg@171
|
601 |
@Override
|
franta-hg@171
|
602 |
public void moveToCurrentRow() throws SQLException {
|
franta-hg@171
|
603 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
604 |
}
|
franta-hg@171
|
605 |
|
franta-hg@171
|
606 |
@Override
|
franta-hg@171
|
607 |
public Statement getStatement() throws SQLException {
|
franta-hg@171
|
608 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
609 |
}
|
franta-hg@171
|
610 |
|
franta-hg@171
|
611 |
@Override
|
franta-hg@171
|
612 |
public Object getObject(int columnIndex, Map<String, Class<?>> map) throws SQLException {
|
franta-hg@171
|
613 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
614 |
}
|
franta-hg@171
|
615 |
|
franta-hg@171
|
616 |
@Override
|
franta-hg@171
|
617 |
public Ref getRef(int columnIndex) throws SQLException {
|
franta-hg@171
|
618 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
619 |
}
|
franta-hg@171
|
620 |
|
franta-hg@171
|
621 |
@Override
|
franta-hg@171
|
622 |
public Blob getBlob(int columnIndex) throws SQLException {
|
franta-hg@171
|
623 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
624 |
}
|
franta-hg@171
|
625 |
|
franta-hg@171
|
626 |
@Override
|
franta-hg@171
|
627 |
public Clob getClob(int columnIndex) throws SQLException {
|
franta-hg@171
|
628 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
629 |
}
|
franta-hg@171
|
630 |
|
franta-hg@171
|
631 |
@Override
|
franta-hg@171
|
632 |
public Array getArray(int columnIndex) throws SQLException {
|
franta-hg@171
|
633 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
634 |
}
|
franta-hg@171
|
635 |
|
franta-hg@171
|
636 |
@Override
|
franta-hg@171
|
637 |
public Object getObject(String columnLabel, Map<String, Class<?>> map) throws SQLException {
|
franta-hg@171
|
638 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
639 |
}
|
franta-hg@171
|
640 |
|
franta-hg@171
|
641 |
@Override
|
franta-hg@171
|
642 |
public Ref getRef(String columnLabel) throws SQLException {
|
franta-hg@171
|
643 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
644 |
}
|
franta-hg@171
|
645 |
|
franta-hg@171
|
646 |
@Override
|
franta-hg@171
|
647 |
public Blob getBlob(String columnLabel) throws SQLException {
|
franta-hg@171
|
648 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
649 |
}
|
franta-hg@171
|
650 |
|
franta-hg@171
|
651 |
@Override
|
franta-hg@171
|
652 |
public Clob getClob(String columnLabel) throws SQLException {
|
franta-hg@171
|
653 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
654 |
}
|
franta-hg@171
|
655 |
|
franta-hg@171
|
656 |
@Override
|
franta-hg@171
|
657 |
public Array getArray(String columnLabel) throws SQLException {
|
franta-hg@171
|
658 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
659 |
}
|
franta-hg@171
|
660 |
|
franta-hg@171
|
661 |
@Override
|
franta-hg@171
|
662 |
public Date getDate(int columnIndex, Calendar cal) throws SQLException {
|
franta-hg@171
|
663 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
664 |
}
|
franta-hg@171
|
665 |
|
franta-hg@171
|
666 |
@Override
|
franta-hg@171
|
667 |
public Date getDate(String columnLabel, Calendar cal) throws SQLException {
|
franta-hg@171
|
668 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
669 |
}
|
franta-hg@171
|
670 |
|
franta-hg@171
|
671 |
@Override
|
franta-hg@171
|
672 |
public Time getTime(int columnIndex, Calendar cal) throws SQLException {
|
franta-hg@171
|
673 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
674 |
}
|
franta-hg@171
|
675 |
|
franta-hg@171
|
676 |
@Override
|
franta-hg@171
|
677 |
public Time getTime(String columnLabel, Calendar cal) throws SQLException {
|
franta-hg@171
|
678 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
679 |
}
|
franta-hg@171
|
680 |
|
franta-hg@171
|
681 |
@Override
|
franta-hg@171
|
682 |
public Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException {
|
franta-hg@171
|
683 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
684 |
}
|
franta-hg@171
|
685 |
|
franta-hg@171
|
686 |
@Override
|
franta-hg@171
|
687 |
public Timestamp getTimestamp(String columnLabel, Calendar cal) throws SQLException {
|
franta-hg@171
|
688 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
689 |
}
|
franta-hg@171
|
690 |
|
franta-hg@171
|
691 |
@Override
|
franta-hg@171
|
692 |
public URL getURL(int columnIndex) throws SQLException {
|
franta-hg@171
|
693 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
694 |
}
|
franta-hg@171
|
695 |
|
franta-hg@171
|
696 |
@Override
|
franta-hg@171
|
697 |
public URL getURL(String columnLabel) throws SQLException {
|
franta-hg@171
|
698 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
699 |
}
|
franta-hg@171
|
700 |
|
franta-hg@171
|
701 |
@Override
|
franta-hg@171
|
702 |
public void updateRef(int columnIndex, Ref x) throws SQLException {
|
franta-hg@171
|
703 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
704 |
}
|
franta-hg@171
|
705 |
|
franta-hg@171
|
706 |
@Override
|
franta-hg@171
|
707 |
public void updateRef(String columnLabel, Ref x) throws SQLException {
|
franta-hg@171
|
708 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
709 |
}
|
franta-hg@171
|
710 |
|
franta-hg@171
|
711 |
@Override
|
franta-hg@171
|
712 |
public void updateBlob(int columnIndex, Blob x) throws SQLException {
|
franta-hg@171
|
713 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
714 |
}
|
franta-hg@171
|
715 |
|
franta-hg@171
|
716 |
@Override
|
franta-hg@171
|
717 |
public void updateBlob(String columnLabel, Blob x) throws SQLException {
|
franta-hg@171
|
718 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
719 |
}
|
franta-hg@171
|
720 |
|
franta-hg@171
|
721 |
@Override
|
franta-hg@171
|
722 |
public void updateClob(int columnIndex, Clob x) throws SQLException {
|
franta-hg@171
|
723 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
724 |
}
|
franta-hg@171
|
725 |
|
franta-hg@171
|
726 |
@Override
|
franta-hg@171
|
727 |
public void updateClob(String columnLabel, Clob x) throws SQLException {
|
franta-hg@171
|
728 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
729 |
}
|
franta-hg@171
|
730 |
|
franta-hg@171
|
731 |
@Override
|
franta-hg@171
|
732 |
public void updateArray(int columnIndex, Array x) throws SQLException {
|
franta-hg@171
|
733 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
734 |
}
|
franta-hg@171
|
735 |
|
franta-hg@171
|
736 |
@Override
|
franta-hg@171
|
737 |
public void updateArray(String columnLabel, Array x) throws SQLException {
|
franta-hg@171
|
738 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
739 |
}
|
franta-hg@171
|
740 |
|
franta-hg@171
|
741 |
@Override
|
franta-hg@171
|
742 |
public RowId getRowId(int columnIndex) throws SQLException {
|
franta-hg@171
|
743 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
744 |
}
|
franta-hg@171
|
745 |
|
franta-hg@171
|
746 |
@Override
|
franta-hg@171
|
747 |
public RowId getRowId(String columnLabel) throws SQLException {
|
franta-hg@171
|
748 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
749 |
}
|
franta-hg@171
|
750 |
|
franta-hg@171
|
751 |
@Override
|
franta-hg@171
|
752 |
public void updateRowId(int columnIndex, RowId x) throws SQLException {
|
franta-hg@171
|
753 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
754 |
}
|
franta-hg@171
|
755 |
|
franta-hg@171
|
756 |
@Override
|
franta-hg@171
|
757 |
public void updateRowId(String columnLabel, RowId x) throws SQLException {
|
franta-hg@171
|
758 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
759 |
}
|
franta-hg@171
|
760 |
|
franta-hg@171
|
761 |
@Override
|
franta-hg@171
|
762 |
public int getHoldability() throws SQLException {
|
franta-hg@171
|
763 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
764 |
}
|
franta-hg@171
|
765 |
|
franta-hg@171
|
766 |
@Override
|
franta-hg@171
|
767 |
public boolean isClosed() throws SQLException {
|
franta-hg@171
|
768 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
769 |
}
|
franta-hg@171
|
770 |
|
franta-hg@171
|
771 |
@Override
|
franta-hg@171
|
772 |
public void updateNString(int columnIndex, String nString) throws SQLException {
|
franta-hg@171
|
773 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
774 |
}
|
franta-hg@171
|
775 |
|
franta-hg@171
|
776 |
@Override
|
franta-hg@171
|
777 |
public void updateNString(String columnLabel, String nString) throws SQLException {
|
franta-hg@171
|
778 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
779 |
}
|
franta-hg@171
|
780 |
|
franta-hg@171
|
781 |
@Override
|
franta-hg@171
|
782 |
public void updateNClob(int columnIndex, NClob nClob) throws SQLException {
|
franta-hg@171
|
783 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
784 |
}
|
franta-hg@171
|
785 |
|
franta-hg@171
|
786 |
@Override
|
franta-hg@171
|
787 |
public void updateNClob(String columnLabel, NClob nClob) throws SQLException {
|
franta-hg@171
|
788 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
789 |
}
|
franta-hg@171
|
790 |
|
franta-hg@171
|
791 |
@Override
|
franta-hg@171
|
792 |
public NClob getNClob(int columnIndex) throws SQLException {
|
franta-hg@171
|
793 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
794 |
}
|
franta-hg@171
|
795 |
|
franta-hg@171
|
796 |
@Override
|
franta-hg@171
|
797 |
public NClob getNClob(String columnLabel) throws SQLException {
|
franta-hg@171
|
798 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
799 |
}
|
franta-hg@171
|
800 |
|
franta-hg@171
|
801 |
@Override
|
franta-hg@171
|
802 |
public SQLXML getSQLXML(int columnIndex) throws SQLException {
|
franta-hg@171
|
803 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
804 |
}
|
franta-hg@171
|
805 |
|
franta-hg@171
|
806 |
@Override
|
franta-hg@171
|
807 |
public SQLXML getSQLXML(String columnLabel) throws SQLException {
|
franta-hg@171
|
808 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
809 |
}
|
franta-hg@171
|
810 |
|
franta-hg@171
|
811 |
@Override
|
franta-hg@171
|
812 |
public void updateSQLXML(int columnIndex, SQLXML xmlObject) throws SQLException {
|
franta-hg@171
|
813 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
814 |
}
|
franta-hg@171
|
815 |
|
franta-hg@171
|
816 |
@Override
|
franta-hg@171
|
817 |
public void updateSQLXML(String columnLabel, SQLXML xmlObject) throws SQLException {
|
franta-hg@171
|
818 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
819 |
}
|
franta-hg@171
|
820 |
|
franta-hg@171
|
821 |
@Override
|
franta-hg@171
|
822 |
public String getNString(int columnIndex) throws SQLException {
|
franta-hg@171
|
823 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
824 |
}
|
franta-hg@171
|
825 |
|
franta-hg@171
|
826 |
@Override
|
franta-hg@171
|
827 |
public String getNString(String columnLabel) throws SQLException {
|
franta-hg@171
|
828 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
829 |
}
|
franta-hg@171
|
830 |
|
franta-hg@171
|
831 |
@Override
|
franta-hg@171
|
832 |
public Reader getNCharacterStream(int columnIndex) throws SQLException {
|
franta-hg@171
|
833 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
834 |
}
|
franta-hg@171
|
835 |
|
franta-hg@171
|
836 |
@Override
|
franta-hg@171
|
837 |
public Reader getNCharacterStream(String columnLabel) throws SQLException {
|
franta-hg@171
|
838 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
839 |
}
|
franta-hg@171
|
840 |
|
franta-hg@171
|
841 |
@Override
|
franta-hg@171
|
842 |
public void updateNCharacterStream(int columnIndex, Reader x, long length) throws SQLException {
|
franta-hg@171
|
843 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
844 |
}
|
franta-hg@171
|
845 |
|
franta-hg@171
|
846 |
@Override
|
franta-hg@171
|
847 |
public void updateNCharacterStream(String columnLabel, Reader reader, long length) throws SQLException {
|
franta-hg@171
|
848 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
849 |
}
|
franta-hg@171
|
850 |
|
franta-hg@171
|
851 |
@Override
|
franta-hg@171
|
852 |
public void updateAsciiStream(int columnIndex, InputStream x, long length) throws SQLException {
|
franta-hg@171
|
853 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
854 |
}
|
franta-hg@171
|
855 |
|
franta-hg@171
|
856 |
@Override
|
franta-hg@171
|
857 |
public void updateBinaryStream(int columnIndex, InputStream x, long length) throws SQLException {
|
franta-hg@171
|
858 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
859 |
}
|
franta-hg@171
|
860 |
|
franta-hg@171
|
861 |
@Override
|
franta-hg@171
|
862 |
public void updateCharacterStream(int columnIndex, Reader x, long length) throws SQLException {
|
franta-hg@171
|
863 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
864 |
}
|
franta-hg@171
|
865 |
|
franta-hg@171
|
866 |
@Override
|
franta-hg@171
|
867 |
public void updateAsciiStream(String columnLabel, InputStream x, long length) throws SQLException {
|
franta-hg@171
|
868 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
869 |
}
|
franta-hg@171
|
870 |
|
franta-hg@171
|
871 |
@Override
|
franta-hg@171
|
872 |
public void updateBinaryStream(String columnLabel, InputStream x, long length) throws SQLException {
|
franta-hg@171
|
873 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
874 |
}
|
franta-hg@171
|
875 |
|
franta-hg@171
|
876 |
@Override
|
franta-hg@171
|
877 |
public void updateCharacterStream(String columnLabel, Reader reader, long length) throws SQLException {
|
franta-hg@171
|
878 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
879 |
}
|
franta-hg@171
|
880 |
|
franta-hg@171
|
881 |
@Override
|
franta-hg@171
|
882 |
public void updateBlob(int columnIndex, InputStream inputStream, long length) throws SQLException {
|
franta-hg@171
|
883 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
884 |
}
|
franta-hg@171
|
885 |
|
franta-hg@171
|
886 |
@Override
|
franta-hg@171
|
887 |
public void updateBlob(String columnLabel, InputStream inputStream, long length) throws SQLException {
|
franta-hg@171
|
888 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
889 |
}
|
franta-hg@171
|
890 |
|
franta-hg@171
|
891 |
@Override
|
franta-hg@171
|
892 |
public void updateClob(int columnIndex, Reader reader, long length) throws SQLException {
|
franta-hg@171
|
893 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
894 |
}
|
franta-hg@171
|
895 |
|
franta-hg@171
|
896 |
@Override
|
franta-hg@171
|
897 |
public void updateClob(String columnLabel, Reader reader, long length) throws SQLException {
|
franta-hg@171
|
898 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
899 |
}
|
franta-hg@171
|
900 |
|
franta-hg@171
|
901 |
@Override
|
franta-hg@171
|
902 |
public void updateNClob(int columnIndex, Reader reader, long length) throws SQLException {
|
franta-hg@171
|
903 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
904 |
}
|
franta-hg@171
|
905 |
|
franta-hg@171
|
906 |
@Override
|
franta-hg@171
|
907 |
public void updateNClob(String columnLabel, Reader reader, long length) throws SQLException {
|
franta-hg@171
|
908 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
909 |
}
|
franta-hg@171
|
910 |
|
franta-hg@171
|
911 |
@Override
|
franta-hg@171
|
912 |
public void updateNCharacterStream(int columnIndex, Reader x) throws SQLException {
|
franta-hg@171
|
913 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
914 |
}
|
franta-hg@171
|
915 |
|
franta-hg@171
|
916 |
@Override
|
franta-hg@171
|
917 |
public void updateNCharacterStream(String columnLabel, Reader reader) throws SQLException {
|
franta-hg@171
|
918 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
919 |
}
|
franta-hg@171
|
920 |
|
franta-hg@171
|
921 |
@Override
|
franta-hg@171
|
922 |
public void updateAsciiStream(int columnIndex, InputStream x) throws SQLException {
|
franta-hg@171
|
923 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
924 |
}
|
franta-hg@171
|
925 |
|
franta-hg@171
|
926 |
@Override
|
franta-hg@171
|
927 |
public void updateBinaryStream(int columnIndex, InputStream x) throws SQLException {
|
franta-hg@171
|
928 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
929 |
}
|
franta-hg@171
|
930 |
|
franta-hg@171
|
931 |
@Override
|
franta-hg@171
|
932 |
public void updateCharacterStream(int columnIndex, Reader x) throws SQLException {
|
franta-hg@171
|
933 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
934 |
}
|
franta-hg@171
|
935 |
|
franta-hg@171
|
936 |
@Override
|
franta-hg@171
|
937 |
public void updateAsciiStream(String columnLabel, InputStream x) throws SQLException {
|
franta-hg@171
|
938 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
939 |
}
|
franta-hg@171
|
940 |
|
franta-hg@171
|
941 |
@Override
|
franta-hg@171
|
942 |
public void updateBinaryStream(String columnLabel, InputStream x) throws SQLException {
|
franta-hg@171
|
943 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
944 |
}
|
franta-hg@171
|
945 |
|
franta-hg@171
|
946 |
@Override
|
franta-hg@171
|
947 |
public void updateCharacterStream(String columnLabel, Reader reader) throws SQLException {
|
franta-hg@171
|
948 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
949 |
}
|
franta-hg@171
|
950 |
|
franta-hg@171
|
951 |
@Override
|
franta-hg@171
|
952 |
public void updateBlob(int columnIndex, InputStream inputStream) throws SQLException {
|
franta-hg@171
|
953 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
954 |
}
|
franta-hg@171
|
955 |
|
franta-hg@171
|
956 |
@Override
|
franta-hg@171
|
957 |
public void updateBlob(String columnLabel, InputStream inputStream) throws SQLException {
|
franta-hg@171
|
958 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
959 |
}
|
franta-hg@171
|
960 |
|
franta-hg@171
|
961 |
@Override
|
franta-hg@171
|
962 |
public void updateClob(int columnIndex, Reader reader) throws SQLException {
|
franta-hg@171
|
963 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
964 |
}
|
franta-hg@171
|
965 |
|
franta-hg@171
|
966 |
@Override
|
franta-hg@171
|
967 |
public void updateClob(String columnLabel, Reader reader) throws SQLException {
|
franta-hg@171
|
968 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
969 |
}
|
franta-hg@171
|
970 |
|
franta-hg@171
|
971 |
@Override
|
franta-hg@171
|
972 |
public void updateNClob(int columnIndex, Reader reader) throws SQLException {
|
franta-hg@171
|
973 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
974 |
}
|
franta-hg@171
|
975 |
|
franta-hg@171
|
976 |
@Override
|
franta-hg@171
|
977 |
public void updateNClob(String columnLabel, Reader reader) throws SQLException {
|
franta-hg@171
|
978 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
979 |
}
|
franta-hg@171
|
980 |
|
franta-hg@171
|
981 |
@Override
|
franta-hg@171
|
982 |
public <T> T getObject(int columnIndex, Class<T> type) throws SQLException {
|
franta-hg@171
|
983 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
984 |
}
|
franta-hg@171
|
985 |
|
franta-hg@171
|
986 |
@Override
|
franta-hg@171
|
987 |
public <T> T getObject(String columnLabel, Class<T> type) throws SQLException {
|
franta-hg@171
|
988 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
989 |
}
|
franta-hg@171
|
990 |
|
franta-hg@171
|
991 |
@Override
|
franta-hg@171
|
992 |
public <T> T unwrap(Class<T> iface) throws SQLException {
|
franta-hg@171
|
993 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
994 |
}
|
franta-hg@171
|
995 |
|
franta-hg@171
|
996 |
@Override
|
franta-hg@171
|
997 |
public boolean isWrapperFor(Class<?> iface) throws SQLException {
|
franta-hg@171
|
998 |
throw new SQLException("Not supported yet.");
|
franta-hg@171
|
999 |
}
|
franta-hg@171
|
1000 |
}
|