1/*
2 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 */
23package util;
24
25import java.io.InputStream;
26import java.io.Reader;
27import java.math.BigDecimal;
28import java.net.URL;
29import java.sql.Array;
30import java.sql.Blob;
31import java.sql.Clob;
32import java.sql.Date;
33import java.sql.NClob;
34import java.sql.Ref;
35import java.sql.ResultSetMetaData;
36import java.sql.RowId;
37import java.sql.SQLException;
38import java.sql.SQLWarning;
39import java.sql.SQLXML;
40import java.sql.Savepoint;
41import java.sql.Statement;
42import java.sql.Time;
43import java.sql.Timestamp;
44import java.util.Calendar;
45import java.util.Map;
46import javax.sql.RowSetListener;
47import javax.sql.rowset.JdbcRowSet;
48import javax.sql.rowset.RowSetWarning;
49
50public class StubJdbcRowSetImpl implements JdbcRowSet {
51
52    @Override
53    public boolean getShowDeleted() throws SQLException {
54        throw new UnsupportedOperationException("Not supported yet.");
55    }
56
57    @Override
58    public void setShowDeleted(boolean b) throws SQLException {
59        throw new UnsupportedOperationException("Not supported yet.");
60    }
61
62    @Override
63    public RowSetWarning getRowSetWarnings() throws SQLException {
64        throw new UnsupportedOperationException("Not supported yet.");
65    }
66
67    @Override
68    public void commit() throws SQLException {
69        throw new UnsupportedOperationException("Not supported yet.");
70    }
71
72    @Override
73    public boolean getAutoCommit() throws SQLException {
74        throw new UnsupportedOperationException("Not supported yet.");
75    }
76
77    @Override
78    public void setAutoCommit(boolean autoCommit) throws SQLException {
79        throw new UnsupportedOperationException("Not supported yet.");
80    }
81
82    @Override
83    public void rollback() throws SQLException {
84        throw new UnsupportedOperationException("Not supported yet.");
85    }
86
87    @Override
88    public void rollback(Savepoint s) throws SQLException {
89        throw new UnsupportedOperationException("Not supported yet.");
90    }
91
92    @Override
93    public String getUrl() throws SQLException {
94        throw new UnsupportedOperationException("Not supported yet.");
95    }
96
97    @Override
98    public void setUrl(String url) throws SQLException {
99        throw new UnsupportedOperationException("Not supported yet.");
100    }
101
102    @Override
103    public String getDataSourceName() {
104        throw new UnsupportedOperationException("Not supported yet.");
105    }
106
107    @Override
108    public void setDataSourceName(String name) throws SQLException {
109        throw new UnsupportedOperationException("Not supported yet.");
110    }
111
112    @Override
113    public String getUsername() {
114        throw new UnsupportedOperationException("Not supported yet.");
115    }
116
117    @Override
118    public void setUsername(String name) throws SQLException {
119        throw new UnsupportedOperationException("Not supported yet.");
120    }
121
122    @Override
123    public String getPassword() {
124        throw new UnsupportedOperationException("Not supported yet.");
125    }
126
127    @Override
128    public void setPassword(String password) throws SQLException {
129        throw new UnsupportedOperationException("Not supported yet.");
130    }
131
132    @Override
133    public int getTransactionIsolation() {
134        throw new UnsupportedOperationException("Not supported yet.");
135    }
136
137    @Override
138    public void setTransactionIsolation(int level) throws SQLException {
139        throw new UnsupportedOperationException("Not supported yet.");
140    }
141
142    @Override
143    public Map<String, Class<?>> getTypeMap() throws SQLException {
144        throw new UnsupportedOperationException("Not supported yet.");
145    }
146
147    @Override
148    public void setTypeMap(Map<String, Class<?>> map) throws SQLException {
149        throw new UnsupportedOperationException("Not supported yet.");
150    }
151
152    @Override
153    public String getCommand() {
154        throw new UnsupportedOperationException("Not supported yet.");
155    }
156
157    @Override
158    public void setCommand(String cmd) throws SQLException {
159        throw new UnsupportedOperationException("Not supported yet.");
160    }
161
162    @Override
163    public boolean isReadOnly() {
164        throw new UnsupportedOperationException("Not supported yet.");
165    }
166
167    @Override
168    public void setReadOnly(boolean value) throws SQLException {
169        throw new UnsupportedOperationException("Not supported yet.");
170    }
171
172    @Override
173    public int getMaxFieldSize() throws SQLException {
174        throw new UnsupportedOperationException("Not supported yet.");
175    }
176
177    @Override
178    public void setMaxFieldSize(int max) throws SQLException {
179        throw new UnsupportedOperationException("Not supported yet.");
180    }
181
182    @Override
183    public int getMaxRows() throws SQLException {
184        throw new UnsupportedOperationException("Not supported yet.");
185    }
186
187    @Override
188    public void setMaxRows(int max) throws SQLException {
189        throw new UnsupportedOperationException("Not supported yet.");
190    }
191
192    @Override
193    public boolean getEscapeProcessing() throws SQLException {
194        throw new UnsupportedOperationException("Not supported yet.");
195    }
196
197    @Override
198    public void setEscapeProcessing(boolean enable) throws SQLException {
199        throw new UnsupportedOperationException("Not supported yet.");
200    }
201
202    @Override
203    public int getQueryTimeout() throws SQLException {
204        throw new UnsupportedOperationException("Not supported yet.");
205    }
206
207    @Override
208    public void setQueryTimeout(int seconds) throws SQLException {
209        throw new UnsupportedOperationException("Not supported yet.");
210    }
211
212    @Override
213    public void setType(int type) throws SQLException {
214        throw new UnsupportedOperationException("Not supported yet.");
215    }
216
217    @Override
218    public void setConcurrency(int concurrency) throws SQLException {
219        throw new UnsupportedOperationException("Not supported yet.");
220    }
221
222    @Override
223    public void setNull(int parameterIndex, int sqlType) throws SQLException {
224        throw new UnsupportedOperationException("Not supported yet.");
225    }
226
227    @Override
228    public void setNull(String parameterName, int sqlType) throws SQLException {
229        throw new UnsupportedOperationException("Not supported yet.");
230    }
231
232    @Override
233    public void setNull(int paramIndex, int sqlType, String typeName) throws SQLException {
234        throw new UnsupportedOperationException("Not supported yet.");
235    }
236
237    @Override
238    public void setNull(String parameterName, int sqlType, String typeName) throws SQLException {
239        throw new UnsupportedOperationException("Not supported yet.");
240    }
241
242    @Override
243    public void setBoolean(int parameterIndex, boolean x) throws SQLException {
244        throw new UnsupportedOperationException("Not supported yet.");
245    }
246
247    @Override
248    public void setBoolean(String parameterName, boolean x) throws SQLException {
249        throw new UnsupportedOperationException("Not supported yet.");
250    }
251
252    @Override
253    public void setByte(int parameterIndex, byte x) throws SQLException {
254        throw new UnsupportedOperationException("Not supported yet.");
255    }
256
257    @Override
258    public void setByte(String parameterName, byte x) throws SQLException {
259        throw new UnsupportedOperationException("Not supported yet.");
260    }
261
262    @Override
263    public void setShort(int parameterIndex, short x) throws SQLException {
264        throw new UnsupportedOperationException("Not supported yet.");
265    }
266
267    @Override
268    public void setShort(String parameterName, short x) throws SQLException {
269        throw new UnsupportedOperationException("Not supported yet.");
270    }
271
272    @Override
273    public void setInt(int parameterIndex, int x) throws SQLException {
274        throw new UnsupportedOperationException("Not supported yet.");
275    }
276
277    @Override
278    public void setInt(String parameterName, int x) throws SQLException {
279        throw new UnsupportedOperationException("Not supported yet.");
280    }
281
282    @Override
283    public void setLong(int parameterIndex, long x) throws SQLException {
284        throw new UnsupportedOperationException("Not supported yet.");
285    }
286
287    @Override
288    public void setLong(String parameterName, long x) throws SQLException {
289        throw new UnsupportedOperationException("Not supported yet.");
290    }
291
292    @Override
293    public void setFloat(int parameterIndex, float x) throws SQLException {
294        throw new UnsupportedOperationException("Not supported yet.");
295    }
296
297    @Override
298    public void setFloat(String parameterName, float x) throws SQLException {
299        throw new UnsupportedOperationException("Not supported yet.");
300    }
301
302    @Override
303    public void setDouble(int parameterIndex, double x) throws SQLException {
304        throw new UnsupportedOperationException("Not supported yet.");
305    }
306
307    @Override
308    public void setDouble(String parameterName, double x) throws SQLException {
309        throw new UnsupportedOperationException("Not supported yet.");
310    }
311
312    @Override
313    public void setBigDecimal(int parameterIndex, BigDecimal x) throws SQLException {
314        throw new UnsupportedOperationException("Not supported yet.");
315    }
316
317    @Override
318    public void setBigDecimal(String parameterName, BigDecimal x) throws SQLException {
319        throw new UnsupportedOperationException("Not supported yet.");
320    }
321
322    @Override
323    public void setString(int parameterIndex, String x) throws SQLException {
324        throw new UnsupportedOperationException("Not supported yet.");
325    }
326
327    @Override
328    public void setString(String parameterName, String x) throws SQLException {
329        throw new UnsupportedOperationException("Not supported yet.");
330    }
331
332    @Override
333    public void setBytes(int parameterIndex, byte[] x) throws SQLException {
334        throw new UnsupportedOperationException("Not supported yet.");
335    }
336
337    @Override
338    public void setBytes(String parameterName, byte[] x) throws SQLException {
339        throw new UnsupportedOperationException("Not supported yet.");
340    }
341
342    @Override
343    public void setDate(int parameterIndex, Date x) throws SQLException {
344        throw new UnsupportedOperationException("Not supported yet.");
345    }
346
347    @Override
348    public void setTime(int parameterIndex, Time x) throws SQLException {
349        throw new UnsupportedOperationException("Not supported yet.");
350    }
351
352    @Override
353    public void setTimestamp(int parameterIndex, Timestamp x) throws SQLException {
354        throw new UnsupportedOperationException("Not supported yet.");
355    }
356
357    @Override
358    public void setTimestamp(String parameterName, Timestamp x) throws SQLException {
359        throw new UnsupportedOperationException("Not supported yet.");
360    }
361
362    @Override
363    public void setAsciiStream(int parameterIndex, InputStream x, int length) throws SQLException {
364        throw new UnsupportedOperationException("Not supported yet.");
365    }
366
367    @Override
368    public void setAsciiStream(String parameterName, InputStream x, int length) throws SQLException {
369        throw new UnsupportedOperationException("Not supported yet.");
370    }
371
372    @Override
373    public void setBinaryStream(int parameterIndex, InputStream x, int length) throws SQLException {
374        throw new UnsupportedOperationException("Not supported yet.");
375    }
376
377    @Override
378    public void setBinaryStream(String parameterName, InputStream x, int length) throws SQLException {
379        throw new UnsupportedOperationException("Not supported yet.");
380    }
381
382    @Override
383    public void setCharacterStream(int parameterIndex, Reader reader, int length) throws SQLException {
384        throw new UnsupportedOperationException("Not supported yet.");
385    }
386
387    @Override
388    public void setCharacterStream(String parameterName, Reader reader, int length) throws SQLException {
389        throw new UnsupportedOperationException("Not supported yet.");
390    }
391
392    @Override
393    public void setAsciiStream(int parameterIndex, InputStream x) throws SQLException {
394        throw new UnsupportedOperationException("Not supported yet.");
395    }
396
397    @Override
398    public void setAsciiStream(String parameterName, InputStream x) throws SQLException {
399        throw new UnsupportedOperationException("Not supported yet.");
400    }
401
402    @Override
403    public void setBinaryStream(int parameterIndex, InputStream x) throws SQLException {
404        throw new UnsupportedOperationException("Not supported yet.");
405    }
406
407    @Override
408    public void setBinaryStream(String parameterName, InputStream x) throws SQLException {
409        throw new UnsupportedOperationException("Not supported yet.");
410    }
411
412    @Override
413    public void setCharacterStream(int parameterIndex, Reader reader) throws SQLException {
414        throw new UnsupportedOperationException("Not supported yet.");
415    }
416
417    @Override
418    public void setCharacterStream(String parameterName, Reader reader) throws SQLException {
419        throw new UnsupportedOperationException("Not supported yet.");
420    }
421
422    @Override
423    public void setNCharacterStream(int parameterIndex, Reader value) throws SQLException {
424        throw new UnsupportedOperationException("Not supported yet.");
425    }
426
427    @Override
428    public void setObject(int parameterIndex, Object x, int targetSqlType, int scaleOrLength) throws SQLException {
429        throw new UnsupportedOperationException("Not supported yet.");
430    }
431
432    @Override
433    public void setObject(String parameterName, Object x, int targetSqlType, int scale) throws SQLException {
434        throw new UnsupportedOperationException("Not supported yet.");
435    }
436
437    @Override
438    public void setObject(int parameterIndex, Object x, int targetSqlType) throws SQLException {
439        throw new UnsupportedOperationException("Not supported yet.");
440    }
441
442    @Override
443    public void setObject(String parameterName, Object x, int targetSqlType) throws SQLException {
444        throw new UnsupportedOperationException("Not supported yet.");
445    }
446
447    @Override
448    public void setObject(String parameterName, Object x) throws SQLException {
449        throw new UnsupportedOperationException("Not supported yet.");
450    }
451
452    @Override
453    public void setObject(int parameterIndex, Object x) throws SQLException {
454        throw new UnsupportedOperationException("Not supported yet.");
455    }
456
457    @Override
458    public void setRef(int i, Ref x) throws SQLException {
459        throw new UnsupportedOperationException("Not supported yet.");
460    }
461
462    @Override
463    public void setBlob(int i, Blob x) throws SQLException {
464        throw new UnsupportedOperationException("Not supported yet.");
465    }
466
467    @Override
468    public void setBlob(int parameterIndex, InputStream inputStream, long length) throws SQLException {
469        throw new UnsupportedOperationException("Not supported yet.");
470    }
471
472    @Override
473    public void setBlob(int parameterIndex, InputStream inputStream) throws SQLException {
474        throw new UnsupportedOperationException("Not supported yet.");
475    }
476
477    @Override
478    public void setBlob(String parameterName, InputStream inputStream, long length) throws SQLException {
479        throw new UnsupportedOperationException("Not supported yet.");
480    }
481
482    @Override
483    public void setBlob(String parameterName, Blob x) throws SQLException {
484        throw new UnsupportedOperationException("Not supported yet.");
485    }
486
487    @Override
488    public void setBlob(String parameterName, InputStream inputStream) throws SQLException {
489        throw new UnsupportedOperationException("Not supported yet.");
490    }
491
492    @Override
493    public void setClob(int i, Clob x) throws SQLException {
494        throw new UnsupportedOperationException("Not supported yet.");
495    }
496
497    @Override
498    public void setClob(int parameterIndex, Reader reader, long length) throws SQLException {
499        throw new UnsupportedOperationException("Not supported yet.");
500    }
501
502    @Override
503    public void setClob(int parameterIndex, Reader reader) throws SQLException {
504        throw new UnsupportedOperationException("Not supported yet.");
505    }
506
507    @Override
508    public void setClob(String parameterName, Reader reader, long length) throws SQLException {
509        throw new UnsupportedOperationException("Not supported yet.");
510    }
511
512    @Override
513    public void setClob(String parameterName, Clob x) throws SQLException {
514        throw new UnsupportedOperationException("Not supported yet.");
515    }
516
517    @Override
518    public void setClob(String parameterName, Reader reader) throws SQLException {
519        throw new UnsupportedOperationException("Not supported yet.");
520    }
521
522    @Override
523    public void setArray(int i, Array x) throws SQLException {
524        throw new UnsupportedOperationException("Not supported yet.");
525    }
526
527    @Override
528    public void setDate(int parameterIndex, Date x, Calendar cal) throws SQLException {
529        throw new UnsupportedOperationException("Not supported yet.");
530    }
531
532    @Override
533    public void setDate(String parameterName, Date x) throws SQLException {
534        throw new UnsupportedOperationException("Not supported yet.");
535    }
536
537    @Override
538    public void setDate(String parameterName, Date x, Calendar cal) throws SQLException {
539        throw new UnsupportedOperationException("Not supported yet.");
540    }
541
542    @Override
543    public void setTime(int parameterIndex, Time x, Calendar cal) throws SQLException {
544        throw new UnsupportedOperationException("Not supported yet.");
545    }
546
547    @Override
548    public void setTime(String parameterName, Time x) throws SQLException {
549        throw new UnsupportedOperationException("Not supported yet.");
550    }
551
552    @Override
553    public void setTime(String parameterName, Time x, Calendar cal) throws SQLException {
554        throw new UnsupportedOperationException("Not supported yet.");
555    }
556
557    @Override
558    public void setTimestamp(int parameterIndex, Timestamp x, Calendar cal) throws SQLException {
559        throw new UnsupportedOperationException("Not supported yet.");
560    }
561
562    @Override
563    public void setTimestamp(String parameterName, Timestamp x, Calendar cal) throws SQLException {
564        throw new UnsupportedOperationException("Not supported yet.");
565    }
566
567    @Override
568    public void clearParameters() throws SQLException {
569        throw new UnsupportedOperationException("Not supported yet.");
570    }
571
572    @Override
573    public void execute() throws SQLException {
574        throw new UnsupportedOperationException("Not supported yet.");
575    }
576
577    @Override
578    public void addRowSetListener(RowSetListener listener) {
579        throw new UnsupportedOperationException("Not supported yet.");
580    }
581
582    @Override
583    public void removeRowSetListener(RowSetListener listener) {
584        throw new UnsupportedOperationException("Not supported yet.");
585    }
586
587    @Override
588    public void setSQLXML(int parameterIndex, SQLXML xmlObject) throws SQLException {
589        throw new UnsupportedOperationException("Not supported yet.");
590    }
591
592    @Override
593    public void setSQLXML(String parameterName, SQLXML xmlObject) throws SQLException {
594        throw new UnsupportedOperationException("Not supported yet.");
595    }
596
597    @Override
598    public void setRowId(int parameterIndex, RowId x) throws SQLException {
599        throw new UnsupportedOperationException("Not supported yet.");
600    }
601
602    @Override
603    public void setRowId(String parameterName, RowId x) throws SQLException {
604        throw new UnsupportedOperationException("Not supported yet.");
605    }
606
607    @Override
608    public void setNString(int parameterIndex, String value) throws SQLException {
609        throw new UnsupportedOperationException("Not supported yet.");
610    }
611
612    @Override
613    public void setNString(String parameterName, String value) throws SQLException {
614        throw new UnsupportedOperationException("Not supported yet.");
615    }
616
617    @Override
618    public void setNCharacterStream(int parameterIndex, Reader value, long length) throws SQLException {
619        throw new UnsupportedOperationException("Not supported yet.");
620    }
621
622    @Override
623    public void setNCharacterStream(String parameterName, Reader value, long length) throws SQLException {
624        throw new UnsupportedOperationException("Not supported yet.");
625    }
626
627    @Override
628    public void setNCharacterStream(String parameterName, Reader value) throws SQLException {
629        throw new UnsupportedOperationException("Not supported yet.");
630    }
631
632    @Override
633    public void setNClob(String parameterName, NClob value) throws SQLException {
634        throw new UnsupportedOperationException("Not supported yet.");
635    }
636
637    @Override
638    public void setNClob(String parameterName, Reader reader, long length) throws SQLException {
639        throw new UnsupportedOperationException("Not supported yet.");
640    }
641
642    @Override
643    public void setNClob(String parameterName, Reader reader) throws SQLException {
644        throw new UnsupportedOperationException("Not supported yet.");
645    }
646
647    @Override
648    public void setNClob(int parameterIndex, Reader reader, long length) throws SQLException {
649        throw new UnsupportedOperationException("Not supported yet.");
650    }
651
652    @Override
653    public void setNClob(int parameterIndex, NClob value) throws SQLException {
654        throw new UnsupportedOperationException("Not supported yet.");
655    }
656
657    @Override
658    public void setNClob(int parameterIndex, Reader reader) throws SQLException {
659        throw new UnsupportedOperationException("Not supported yet.");
660    }
661
662    @Override
663    public void setURL(int parameterIndex, URL x) throws SQLException {
664        throw new UnsupportedOperationException("Not supported yet.");
665    }
666
667    @Override
668    public boolean next() throws SQLException {
669        throw new UnsupportedOperationException("Not supported yet.");
670    }
671
672    @Override
673    public void close() throws SQLException {
674        throw new UnsupportedOperationException("Not supported yet.");
675    }
676
677    @Override
678    public boolean wasNull() throws SQLException {
679        throw new UnsupportedOperationException("Not supported yet.");
680    }
681
682    @Override
683    public String getString(int columnIndex) throws SQLException {
684        throw new UnsupportedOperationException("Not supported yet.");
685    }
686
687    @Override
688    public boolean getBoolean(int columnIndex) throws SQLException {
689        throw new UnsupportedOperationException("Not supported yet.");
690    }
691
692    @Override
693    public byte getByte(int columnIndex) throws SQLException {
694        throw new UnsupportedOperationException("Not supported yet.");
695    }
696
697    @Override
698    public short getShort(int columnIndex) throws SQLException {
699        throw new UnsupportedOperationException("Not supported yet.");
700    }
701
702    @Override
703    public int getInt(int columnIndex) throws SQLException {
704        throw new UnsupportedOperationException("Not supported yet.");
705    }
706
707    @Override
708    public long getLong(int columnIndex) throws SQLException {
709        throw new UnsupportedOperationException("Not supported yet.");
710    }
711
712    @Override
713    public float getFloat(int columnIndex) throws SQLException {
714        throw new UnsupportedOperationException("Not supported yet.");
715    }
716
717    @Override
718    public double getDouble(int columnIndex) throws SQLException {
719        throw new UnsupportedOperationException("Not supported yet.");
720    }
721
722    @Override
723    public BigDecimal getBigDecimal(int columnIndex, int scale) throws SQLException {
724        throw new UnsupportedOperationException("Not supported yet.");
725    }
726
727    @Override
728    public byte[] getBytes(int columnIndex) throws SQLException {
729        throw new UnsupportedOperationException("Not supported yet.");
730    }
731
732    @Override
733    public Date getDate(int columnIndex) throws SQLException {
734        throw new UnsupportedOperationException("Not supported yet.");
735    }
736
737    @Override
738    public Time getTime(int columnIndex) throws SQLException {
739        throw new UnsupportedOperationException("Not supported yet.");
740    }
741
742    @Override
743    public Timestamp getTimestamp(int columnIndex) throws SQLException {
744        throw new UnsupportedOperationException("Not supported yet.");
745    }
746
747    @Override
748    public InputStream getAsciiStream(int columnIndex) throws SQLException {
749        throw new UnsupportedOperationException("Not supported yet.");
750    }
751
752    @Override
753    public InputStream getUnicodeStream(int columnIndex) throws SQLException {
754        throw new UnsupportedOperationException("Not supported yet.");
755    }
756
757    @Override
758    public InputStream getBinaryStream(int columnIndex) throws SQLException {
759        throw new UnsupportedOperationException("Not supported yet.");
760    }
761
762    @Override
763    public String getString(String columnLabel) throws SQLException {
764        throw new UnsupportedOperationException("Not supported yet.");
765    }
766
767    @Override
768    public boolean getBoolean(String columnLabel) throws SQLException {
769        throw new UnsupportedOperationException("Not supported yet.");
770    }
771
772    @Override
773    public byte getByte(String columnLabel) throws SQLException {
774        throw new UnsupportedOperationException("Not supported yet.");
775    }
776
777    @Override
778    public short getShort(String columnLabel) throws SQLException {
779        throw new UnsupportedOperationException("Not supported yet.");
780    }
781
782    @Override
783    public int getInt(String columnLabel) throws SQLException {
784        throw new UnsupportedOperationException("Not supported yet.");
785    }
786
787    @Override
788    public long getLong(String columnLabel) throws SQLException {
789        throw new UnsupportedOperationException("Not supported yet.");
790    }
791
792    @Override
793    public float getFloat(String columnLabel) throws SQLException {
794        throw new UnsupportedOperationException("Not supported yet.");
795    }
796
797    @Override
798    public double getDouble(String columnLabel) throws SQLException {
799        throw new UnsupportedOperationException("Not supported yet.");
800    }
801
802    @Override
803    public BigDecimal getBigDecimal(String columnLabel, int scale) throws SQLException {
804        throw new UnsupportedOperationException("Not supported yet.");
805    }
806
807    @Override
808    public byte[] getBytes(String columnLabel) throws SQLException {
809        throw new UnsupportedOperationException("Not supported yet.");
810    }
811
812    @Override
813    public Date getDate(String columnLabel) throws SQLException {
814        throw new UnsupportedOperationException("Not supported yet.");
815    }
816
817    @Override
818    public Time getTime(String columnLabel) throws SQLException {
819        throw new UnsupportedOperationException("Not supported yet.");
820    }
821
822    @Override
823    public Timestamp getTimestamp(String columnLabel) throws SQLException {
824        throw new UnsupportedOperationException("Not supported yet.");
825    }
826
827    @Override
828    public InputStream getAsciiStream(String columnLabel) throws SQLException {
829        throw new UnsupportedOperationException("Not supported yet.");
830    }
831
832    @Override
833    public InputStream getUnicodeStream(String columnLabel) throws SQLException {
834        throw new UnsupportedOperationException("Not supported yet.");
835    }
836
837    @Override
838    public InputStream getBinaryStream(String columnLabel) throws SQLException {
839        throw new UnsupportedOperationException("Not supported yet.");
840    }
841
842    @Override
843    public SQLWarning getWarnings() throws SQLException {
844        throw new UnsupportedOperationException("Not supported yet.");
845    }
846
847    @Override
848    public void clearWarnings() throws SQLException {
849        throw new UnsupportedOperationException("Not supported yet.");
850    }
851
852    @Override
853    public String getCursorName() throws SQLException {
854        throw new UnsupportedOperationException("Not supported yet.");
855    }
856
857    @Override
858    public ResultSetMetaData getMetaData() throws SQLException {
859        throw new UnsupportedOperationException("Not supported yet.");
860    }
861
862    @Override
863    public Object getObject(int columnIndex) throws SQLException {
864        throw new UnsupportedOperationException("Not supported yet.");
865    }
866
867    @Override
868    public Object getObject(String columnLabel) throws SQLException {
869        throw new UnsupportedOperationException("Not supported yet.");
870    }
871
872    @Override
873    public int findColumn(String columnLabel) throws SQLException {
874        throw new UnsupportedOperationException("Not supported yet.");
875    }
876
877    @Override
878    public Reader getCharacterStream(int columnIndex) throws SQLException {
879        throw new UnsupportedOperationException("Not supported yet.");
880    }
881
882    @Override
883    public Reader getCharacterStream(String columnLabel) throws SQLException {
884        throw new UnsupportedOperationException("Not supported yet.");
885    }
886
887    @Override
888    public BigDecimal getBigDecimal(int columnIndex) throws SQLException {
889        throw new UnsupportedOperationException("Not supported yet.");
890    }
891
892    @Override
893    public BigDecimal getBigDecimal(String columnLabel) throws SQLException {
894        throw new UnsupportedOperationException("Not supported yet.");
895    }
896
897    @Override
898    public boolean isBeforeFirst() throws SQLException {
899        throw new UnsupportedOperationException("Not supported yet.");
900    }
901
902    @Override
903    public boolean isAfterLast() throws SQLException {
904        throw new UnsupportedOperationException("Not supported yet.");
905    }
906
907    @Override
908    public boolean isFirst() throws SQLException {
909        throw new UnsupportedOperationException("Not supported yet.");
910    }
911
912    @Override
913    public boolean isLast() throws SQLException {
914        throw new UnsupportedOperationException("Not supported yet.");
915    }
916
917    @Override
918    public void beforeFirst() throws SQLException {
919        throw new UnsupportedOperationException("Not supported yet.");
920    }
921
922    @Override
923    public void afterLast() throws SQLException {
924        throw new UnsupportedOperationException("Not supported yet.");
925    }
926
927    @Override
928    public boolean first() throws SQLException {
929        throw new UnsupportedOperationException("Not supported yet.");
930    }
931
932    @Override
933    public boolean last() throws SQLException {
934        throw new UnsupportedOperationException("Not supported yet.");
935    }
936
937    @Override
938    public int getRow() throws SQLException {
939        throw new UnsupportedOperationException("Not supported yet.");
940    }
941
942    @Override
943    public boolean absolute(int row) throws SQLException {
944        throw new UnsupportedOperationException("Not supported yet.");
945    }
946
947    @Override
948    public boolean relative(int rows) throws SQLException {
949        throw new UnsupportedOperationException("Not supported yet.");
950    }
951
952    @Override
953    public boolean previous() throws SQLException {
954        throw new UnsupportedOperationException("Not supported yet.");
955    }
956
957    @Override
958    public void setFetchDirection(int direction) throws SQLException {
959        throw new UnsupportedOperationException("Not supported yet.");
960    }
961
962    @Override
963    public int getFetchDirection() throws SQLException {
964        throw new UnsupportedOperationException("Not supported yet.");
965    }
966
967    @Override
968    public void setFetchSize(int rows) throws SQLException {
969        throw new UnsupportedOperationException("Not supported yet.");
970    }
971
972    @Override
973    public int getFetchSize() throws SQLException {
974        throw new UnsupportedOperationException("Not supported yet.");
975    }
976
977    @Override
978    public int getType() throws SQLException {
979        throw new UnsupportedOperationException("Not supported yet.");
980    }
981
982    @Override
983    public int getConcurrency() throws SQLException {
984        throw new UnsupportedOperationException("Not supported yet.");
985    }
986
987    @Override
988    public boolean rowUpdated() throws SQLException {
989        throw new UnsupportedOperationException("Not supported yet.");
990    }
991
992    @Override
993    public boolean rowInserted() throws SQLException {
994        throw new UnsupportedOperationException("Not supported yet.");
995    }
996
997    @Override
998    public boolean rowDeleted() throws SQLException {
999        throw new UnsupportedOperationException("Not supported yet.");
1000    }
1001
1002    @Override
1003    public void updateNull(int columnIndex) throws SQLException {
1004        throw new UnsupportedOperationException("Not supported yet.");
1005    }
1006
1007    @Override
1008    public void updateBoolean(int columnIndex, boolean x) throws SQLException {
1009        throw new UnsupportedOperationException("Not supported yet.");
1010    }
1011
1012    @Override
1013    public void updateByte(int columnIndex, byte x) throws SQLException {
1014        throw new UnsupportedOperationException("Not supported yet.");
1015    }
1016
1017    @Override
1018    public void updateShort(int columnIndex, short x) throws SQLException {
1019        throw new UnsupportedOperationException("Not supported yet.");
1020    }
1021
1022    @Override
1023    public void updateInt(int columnIndex, int x) throws SQLException {
1024        throw new UnsupportedOperationException("Not supported yet.");
1025    }
1026
1027    @Override
1028    public void updateLong(int columnIndex, long x) throws SQLException {
1029        throw new UnsupportedOperationException("Not supported yet.");
1030    }
1031
1032    @Override
1033    public void updateFloat(int columnIndex, float x) throws SQLException {
1034        throw new UnsupportedOperationException("Not supported yet.");
1035    }
1036
1037    @Override
1038    public void updateDouble(int columnIndex, double x) throws SQLException {
1039        throw new UnsupportedOperationException("Not supported yet.");
1040    }
1041
1042    @Override
1043    public void updateBigDecimal(int columnIndex, BigDecimal x) throws SQLException {
1044        throw new UnsupportedOperationException("Not supported yet.");
1045    }
1046
1047    @Override
1048    public void updateString(int columnIndex, String x) throws SQLException {
1049        throw new UnsupportedOperationException("Not supported yet.");
1050    }
1051
1052    @Override
1053    public void updateBytes(int columnIndex, byte[] x) throws SQLException {
1054        throw new UnsupportedOperationException("Not supported yet.");
1055    }
1056
1057    @Override
1058    public void updateDate(int columnIndex, Date x) throws SQLException {
1059        throw new UnsupportedOperationException("Not supported yet.");
1060    }
1061
1062    @Override
1063    public void updateTime(int columnIndex, Time x) throws SQLException {
1064        throw new UnsupportedOperationException("Not supported yet.");
1065    }
1066
1067    @Override
1068    public void updateTimestamp(int columnIndex, Timestamp x) throws SQLException {
1069        throw new UnsupportedOperationException("Not supported yet.");
1070    }
1071
1072    @Override
1073    public void updateAsciiStream(int columnIndex, InputStream x, int length) throws SQLException {
1074        throw new UnsupportedOperationException("Not supported yet.");
1075    }
1076
1077    @Override
1078    public void updateBinaryStream(int columnIndex, InputStream x, int length) throws SQLException {
1079        throw new UnsupportedOperationException("Not supported yet.");
1080    }
1081
1082    @Override
1083    public void updateCharacterStream(int columnIndex, Reader x, int length) throws SQLException {
1084        throw new UnsupportedOperationException("Not supported yet.");
1085    }
1086
1087    @Override
1088    public void updateObject(int columnIndex, Object x, int scaleOrLength) throws SQLException {
1089        throw new UnsupportedOperationException("Not supported yet.");
1090    }
1091
1092    @Override
1093    public void updateObject(int columnIndex, Object x) throws SQLException {
1094        throw new UnsupportedOperationException("Not supported yet.");
1095    }
1096
1097    @Override
1098    public void updateNull(String columnLabel) throws SQLException {
1099        throw new UnsupportedOperationException("Not supported yet.");
1100    }
1101
1102    @Override
1103    public void updateBoolean(String columnLabel, boolean x) throws SQLException {
1104        throw new UnsupportedOperationException("Not supported yet.");
1105    }
1106
1107    @Override
1108    public void updateByte(String columnLabel, byte x) throws SQLException {
1109        throw new UnsupportedOperationException("Not supported yet.");
1110    }
1111
1112    @Override
1113    public void updateShort(String columnLabel, short x) throws SQLException {
1114        throw new UnsupportedOperationException("Not supported yet.");
1115    }
1116
1117    @Override
1118    public void updateInt(String columnLabel, int x) throws SQLException {
1119        throw new UnsupportedOperationException("Not supported yet.");
1120    }
1121
1122    @Override
1123    public void updateLong(String columnLabel, long x) throws SQLException {
1124        throw new UnsupportedOperationException("Not supported yet.");
1125    }
1126
1127    @Override
1128    public void updateFloat(String columnLabel, float x) throws SQLException {
1129        throw new UnsupportedOperationException("Not supported yet.");
1130    }
1131
1132    @Override
1133    public void updateDouble(String columnLabel, double x) throws SQLException {
1134        throw new UnsupportedOperationException("Not supported yet.");
1135    }
1136
1137    @Override
1138    public void updateBigDecimal(String columnLabel, BigDecimal x) throws SQLException {
1139        throw new UnsupportedOperationException("Not supported yet.");
1140    }
1141
1142    @Override
1143    public void updateString(String columnLabel, String x) throws SQLException {
1144        throw new UnsupportedOperationException("Not supported yet.");
1145    }
1146
1147    @Override
1148    public void updateBytes(String columnLabel, byte[] x) throws SQLException {
1149        throw new UnsupportedOperationException("Not supported yet.");
1150    }
1151
1152    @Override
1153    public void updateDate(String columnLabel, Date x) throws SQLException {
1154        throw new UnsupportedOperationException("Not supported yet.");
1155    }
1156
1157    @Override
1158    public void updateTime(String columnLabel, Time x) throws SQLException {
1159        throw new UnsupportedOperationException("Not supported yet.");
1160    }
1161
1162    @Override
1163    public void updateTimestamp(String columnLabel, Timestamp x) throws SQLException {
1164        throw new UnsupportedOperationException("Not supported yet.");
1165    }
1166
1167    @Override
1168    public void updateAsciiStream(String columnLabel, InputStream x, int length) throws SQLException {
1169        throw new UnsupportedOperationException("Not supported yet.");
1170    }
1171
1172    @Override
1173    public void updateBinaryStream(String columnLabel, InputStream x, int length) throws SQLException {
1174        throw new UnsupportedOperationException("Not supported yet.");
1175    }
1176
1177    @Override
1178    public void updateCharacterStream(String columnLabel, Reader reader, int length) throws SQLException {
1179        throw new UnsupportedOperationException("Not supported yet.");
1180    }
1181
1182    @Override
1183    public void updateObject(String columnLabel, Object x, int scaleOrLength) throws SQLException {
1184        throw new UnsupportedOperationException("Not supported yet.");
1185    }
1186
1187    @Override
1188    public void updateObject(String columnLabel, Object x) throws SQLException {
1189        throw new UnsupportedOperationException("Not supported yet.");
1190    }
1191
1192    @Override
1193    public void insertRow() throws SQLException {
1194        throw new UnsupportedOperationException("Not supported yet.");
1195    }
1196
1197    @Override
1198    public void updateRow() throws SQLException {
1199        throw new UnsupportedOperationException("Not supported yet.");
1200    }
1201
1202    @Override
1203    public void deleteRow() throws SQLException {
1204        throw new UnsupportedOperationException("Not supported yet.");
1205    }
1206
1207    @Override
1208    public void refreshRow() throws SQLException {
1209        throw new UnsupportedOperationException("Not supported yet.");
1210    }
1211
1212    @Override
1213    public void cancelRowUpdates() throws SQLException {
1214        throw new UnsupportedOperationException("Not supported yet.");
1215    }
1216
1217    @Override
1218    public void moveToInsertRow() throws SQLException {
1219        throw new UnsupportedOperationException("Not supported yet.");
1220    }
1221
1222    @Override
1223    public void moveToCurrentRow() throws SQLException {
1224        throw new UnsupportedOperationException("Not supported yet.");
1225    }
1226
1227    @Override
1228    public Statement getStatement() throws SQLException {
1229        throw new UnsupportedOperationException("Not supported yet.");
1230    }
1231
1232    @Override
1233    public Object getObject(int columnIndex, Map<String, Class<?>> map) throws SQLException {
1234        throw new UnsupportedOperationException("Not supported yet.");
1235    }
1236
1237    @Override
1238    public Ref getRef(int columnIndex) throws SQLException {
1239        throw new UnsupportedOperationException("Not supported yet.");
1240    }
1241
1242    @Override
1243    public Blob getBlob(int columnIndex) throws SQLException {
1244        throw new UnsupportedOperationException("Not supported yet.");
1245    }
1246
1247    @Override
1248    public Clob getClob(int columnIndex) throws SQLException {
1249        throw new UnsupportedOperationException("Not supported yet.");
1250    }
1251
1252    @Override
1253    public Array getArray(int columnIndex) throws SQLException {
1254        throw new UnsupportedOperationException("Not supported yet.");
1255    }
1256
1257    @Override
1258    public Object getObject(String columnLabel, Map<String, Class<?>> map) throws SQLException {
1259        throw new UnsupportedOperationException("Not supported yet.");
1260    }
1261
1262    @Override
1263    public Ref getRef(String columnLabel) throws SQLException {
1264        throw new UnsupportedOperationException("Not supported yet.");
1265    }
1266
1267    @Override
1268    public Blob getBlob(String columnLabel) throws SQLException {
1269        throw new UnsupportedOperationException("Not supported yet.");
1270    }
1271
1272    @Override
1273    public Clob getClob(String columnLabel) throws SQLException {
1274        throw new UnsupportedOperationException("Not supported yet.");
1275    }
1276
1277    @Override
1278    public Array getArray(String columnLabel) throws SQLException {
1279        throw new UnsupportedOperationException("Not supported yet.");
1280    }
1281
1282    @Override
1283    public Date getDate(int columnIndex, Calendar cal) throws SQLException {
1284        throw new UnsupportedOperationException("Not supported yet.");
1285    }
1286
1287    @Override
1288    public Date getDate(String columnLabel, Calendar cal) throws SQLException {
1289        throw new UnsupportedOperationException("Not supported yet.");
1290    }
1291
1292    @Override
1293    public Time getTime(int columnIndex, Calendar cal) throws SQLException {
1294        throw new UnsupportedOperationException("Not supported yet.");
1295    }
1296
1297    @Override
1298    public Time getTime(String columnLabel, Calendar cal) throws SQLException {
1299        throw new UnsupportedOperationException("Not supported yet.");
1300    }
1301
1302    @Override
1303    public Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException {
1304        throw new UnsupportedOperationException("Not supported yet.");
1305    }
1306
1307    @Override
1308    public Timestamp getTimestamp(String columnLabel, Calendar cal) throws SQLException {
1309        throw new UnsupportedOperationException("Not supported yet.");
1310    }
1311
1312    @Override
1313    public URL getURL(int columnIndex) throws SQLException {
1314        throw new UnsupportedOperationException("Not supported yet.");
1315    }
1316
1317    @Override
1318    public URL getURL(String columnLabel) throws SQLException {
1319        throw new UnsupportedOperationException("Not supported yet.");
1320    }
1321
1322    @Override
1323    public void updateRef(int columnIndex, Ref x) throws SQLException {
1324        throw new UnsupportedOperationException("Not supported yet.");
1325    }
1326
1327    @Override
1328    public void updateRef(String columnLabel, Ref x) throws SQLException {
1329        throw new UnsupportedOperationException("Not supported yet.");
1330    }
1331
1332    @Override
1333    public void updateBlob(int columnIndex, Blob x) throws SQLException {
1334        throw new UnsupportedOperationException("Not supported yet.");
1335    }
1336
1337    @Override
1338    public void updateBlob(String columnLabel, Blob x) throws SQLException {
1339        throw new UnsupportedOperationException("Not supported yet.");
1340    }
1341
1342    @Override
1343    public void updateClob(int columnIndex, Clob x) throws SQLException {
1344        throw new UnsupportedOperationException("Not supported yet.");
1345    }
1346
1347    @Override
1348    public void updateClob(String columnLabel, Clob x) throws SQLException {
1349        throw new UnsupportedOperationException("Not supported yet.");
1350    }
1351
1352    @Override
1353    public void updateArray(int columnIndex, Array x) throws SQLException {
1354        throw new UnsupportedOperationException("Not supported yet.");
1355    }
1356
1357    @Override
1358    public void updateArray(String columnLabel, Array x) throws SQLException {
1359        throw new UnsupportedOperationException("Not supported yet.");
1360    }
1361
1362    @Override
1363    public RowId getRowId(int columnIndex) throws SQLException {
1364        throw new UnsupportedOperationException("Not supported yet.");
1365    }
1366
1367    @Override
1368    public RowId getRowId(String columnLabel) throws SQLException {
1369        throw new UnsupportedOperationException("Not supported yet.");
1370    }
1371
1372    @Override
1373    public void updateRowId(int columnIndex, RowId x) throws SQLException {
1374        throw new UnsupportedOperationException("Not supported yet.");
1375    }
1376
1377    @Override
1378    public void updateRowId(String columnLabel, RowId x) throws SQLException {
1379        throw new UnsupportedOperationException("Not supported yet.");
1380    }
1381
1382    @Override
1383    public int getHoldability() throws SQLException {
1384        throw new UnsupportedOperationException("Not supported yet.");
1385    }
1386
1387    @Override
1388    public boolean isClosed() throws SQLException {
1389        throw new UnsupportedOperationException("Not supported yet.");
1390    }
1391
1392    @Override
1393    public void updateNString(int columnIndex, String nString) throws SQLException {
1394        throw new UnsupportedOperationException("Not supported yet.");
1395    }
1396
1397    @Override
1398    public void updateNString(String columnLabel, String nString) throws SQLException {
1399        throw new UnsupportedOperationException("Not supported yet.");
1400    }
1401
1402    @Override
1403    public void updateNClob(int columnIndex, NClob nClob) throws SQLException {
1404        throw new UnsupportedOperationException("Not supported yet.");
1405    }
1406
1407    @Override
1408    public void updateNClob(String columnLabel, NClob nClob) throws SQLException {
1409        throw new UnsupportedOperationException("Not supported yet.");
1410    }
1411
1412    @Override
1413    public NClob getNClob(int columnIndex) throws SQLException {
1414        throw new UnsupportedOperationException("Not supported yet.");
1415    }
1416
1417    @Override
1418    public NClob getNClob(String columnLabel) throws SQLException {
1419        throw new UnsupportedOperationException("Not supported yet.");
1420    }
1421
1422    @Override
1423    public SQLXML getSQLXML(int columnIndex) throws SQLException {
1424        throw new UnsupportedOperationException("Not supported yet.");
1425    }
1426
1427    @Override
1428    public SQLXML getSQLXML(String columnLabel) throws SQLException {
1429        throw new UnsupportedOperationException("Not supported yet.");
1430    }
1431
1432    @Override
1433    public void updateSQLXML(int columnIndex, SQLXML xmlObject) throws SQLException {
1434        throw new UnsupportedOperationException("Not supported yet.");
1435    }
1436
1437    @Override
1438    public void updateSQLXML(String columnLabel, SQLXML xmlObject) throws SQLException {
1439        throw new UnsupportedOperationException("Not supported yet.");
1440    }
1441
1442    @Override
1443    public String getNString(int columnIndex) throws SQLException {
1444        throw new UnsupportedOperationException("Not supported yet.");
1445    }
1446
1447    @Override
1448    public String getNString(String columnLabel) throws SQLException {
1449        throw new UnsupportedOperationException("Not supported yet.");
1450    }
1451
1452    @Override
1453    public Reader getNCharacterStream(int columnIndex) throws SQLException {
1454        throw new UnsupportedOperationException("Not supported yet.");
1455    }
1456
1457    @Override
1458    public Reader getNCharacterStream(String columnLabel) throws SQLException {
1459        throw new UnsupportedOperationException("Not supported yet.");
1460    }
1461
1462    @Override
1463    public void updateNCharacterStream(int columnIndex, Reader x, long length) throws SQLException {
1464        throw new UnsupportedOperationException("Not supported yet.");
1465    }
1466
1467    @Override
1468    public void updateNCharacterStream(String columnLabel, Reader reader, long length) throws SQLException {
1469        throw new UnsupportedOperationException("Not supported yet.");
1470    }
1471
1472    @Override
1473    public void updateAsciiStream(int columnIndex, InputStream x, long length) throws SQLException {
1474        throw new UnsupportedOperationException("Not supported yet.");
1475    }
1476
1477    @Override
1478    public void updateBinaryStream(int columnIndex, InputStream x, long length) throws SQLException {
1479        throw new UnsupportedOperationException("Not supported yet.");
1480    }
1481
1482    @Override
1483    public void updateCharacterStream(int columnIndex, Reader x, long length) throws SQLException {
1484        throw new UnsupportedOperationException("Not supported yet.");
1485    }
1486
1487    @Override
1488    public void updateAsciiStream(String columnLabel, InputStream x, long length) throws SQLException {
1489        throw new UnsupportedOperationException("Not supported yet.");
1490    }
1491
1492    @Override
1493    public void updateBinaryStream(String columnLabel, InputStream x, long length) throws SQLException {
1494        throw new UnsupportedOperationException("Not supported yet.");
1495    }
1496
1497    @Override
1498    public void updateCharacterStream(String columnLabel, Reader reader, long length) throws SQLException {
1499        throw new UnsupportedOperationException("Not supported yet.");
1500    }
1501
1502    @Override
1503    public void updateBlob(int columnIndex, InputStream inputStream, long length) throws SQLException {
1504        throw new UnsupportedOperationException("Not supported yet.");
1505    }
1506
1507    @Override
1508    public void updateBlob(String columnLabel, InputStream inputStream, long length) throws SQLException {
1509        throw new UnsupportedOperationException("Not supported yet.");
1510    }
1511
1512    @Override
1513    public void updateClob(int columnIndex, Reader reader, long length) throws SQLException {
1514        throw new UnsupportedOperationException("Not supported yet.");
1515    }
1516
1517    @Override
1518    public void updateClob(String columnLabel, Reader reader, long length) throws SQLException {
1519        throw new UnsupportedOperationException("Not supported yet.");
1520    }
1521
1522    @Override
1523    public void updateNClob(int columnIndex, Reader reader, long length) throws SQLException {
1524        throw new UnsupportedOperationException("Not supported yet.");
1525    }
1526
1527    @Override
1528    public void updateNClob(String columnLabel, Reader reader, long length) throws SQLException {
1529        throw new UnsupportedOperationException("Not supported yet.");
1530    }
1531
1532    @Override
1533    public void updateNCharacterStream(int columnIndex, Reader x) throws SQLException {
1534        throw new UnsupportedOperationException("Not supported yet.");
1535    }
1536
1537    @Override
1538    public void updateNCharacterStream(String columnLabel, Reader reader) throws SQLException {
1539        throw new UnsupportedOperationException("Not supported yet.");
1540    }
1541
1542    @Override
1543    public void updateAsciiStream(int columnIndex, InputStream x) throws SQLException {
1544        throw new UnsupportedOperationException("Not supported yet.");
1545    }
1546
1547    @Override
1548    public void updateBinaryStream(int columnIndex, InputStream x) throws SQLException {
1549        throw new UnsupportedOperationException("Not supported yet.");
1550    }
1551
1552    @Override
1553    public void updateCharacterStream(int columnIndex, Reader x) throws SQLException {
1554        throw new UnsupportedOperationException("Not supported yet.");
1555    }
1556
1557    @Override
1558    public void updateAsciiStream(String columnLabel, InputStream x) throws SQLException {
1559        throw new UnsupportedOperationException("Not supported yet.");
1560    }
1561
1562    @Override
1563    public void updateBinaryStream(String columnLabel, InputStream x) throws SQLException {
1564        throw new UnsupportedOperationException("Not supported yet.");
1565    }
1566
1567    @Override
1568    public void updateCharacterStream(String columnLabel, Reader reader) throws SQLException {
1569        throw new UnsupportedOperationException("Not supported yet.");
1570    }
1571
1572    @Override
1573    public void updateBlob(int columnIndex, InputStream inputStream) throws SQLException {
1574        throw new UnsupportedOperationException("Not supported yet.");
1575    }
1576
1577    @Override
1578    public void updateBlob(String columnLabel, InputStream inputStream) throws SQLException {
1579        throw new UnsupportedOperationException("Not supported yet.");
1580    }
1581
1582    @Override
1583    public void updateClob(int columnIndex, Reader reader) throws SQLException {
1584        throw new UnsupportedOperationException("Not supported yet.");
1585    }
1586
1587    @Override
1588    public void updateClob(String columnLabel, Reader reader) throws SQLException {
1589        throw new UnsupportedOperationException("Not supported yet.");
1590    }
1591
1592    @Override
1593    public void updateNClob(int columnIndex, Reader reader) throws SQLException {
1594        throw new UnsupportedOperationException("Not supported yet.");
1595    }
1596
1597    @Override
1598    public void updateNClob(String columnLabel, Reader reader) throws SQLException {
1599        throw new UnsupportedOperationException("Not supported yet.");
1600    }
1601
1602    @Override
1603    public <T> T getObject(int columnIndex, Class<T> type) throws SQLException {
1604        throw new UnsupportedOperationException("Not supported yet.");
1605    }
1606
1607    @Override
1608    public <T> T getObject(String columnLabel, Class<T> type) throws SQLException {
1609        throw new UnsupportedOperationException("Not supported yet.");
1610    }
1611
1612    @Override
1613    public <T> T unwrap(Class<T> iface) throws SQLException {
1614        throw new UnsupportedOperationException("Not supported yet.");
1615    }
1616
1617    @Override
1618    public boolean isWrapperFor(Class<?> iface) throws SQLException {
1619        throw new UnsupportedOperationException("Not supported yet.");
1620    }
1621
1622    @Override
1623    public void setMatchColumn(int columnIdx) throws SQLException {
1624        throw new UnsupportedOperationException("Not supported yet.");
1625    }
1626
1627    @Override
1628    public void setMatchColumn(int[] columnIdxes) throws SQLException {
1629        throw new UnsupportedOperationException("Not supported yet.");
1630    }
1631
1632    @Override
1633    public void setMatchColumn(String columnName) throws SQLException {
1634        throw new UnsupportedOperationException("Not supported yet.");
1635    }
1636
1637    @Override
1638    public void setMatchColumn(String[] columnNames) throws SQLException {
1639        throw new UnsupportedOperationException("Not supported yet.");
1640    }
1641
1642    @Override
1643    public int[] getMatchColumnIndexes() throws SQLException {
1644        throw new UnsupportedOperationException("Not supported yet.");
1645    }
1646
1647    @Override
1648    public String[] getMatchColumnNames() throws SQLException {
1649        throw new UnsupportedOperationException("Not supported yet.");
1650    }
1651
1652    @Override
1653    public void unsetMatchColumn(int columnIdx) throws SQLException {
1654        throw new UnsupportedOperationException("Not supported yet.");
1655    }
1656
1657    @Override
1658    public void unsetMatchColumn(int[] columnIdxes) throws SQLException {
1659        throw new UnsupportedOperationException("Not supported yet.");
1660    }
1661
1662    @Override
1663    public void unsetMatchColumn(String columnName) throws SQLException {
1664        throw new UnsupportedOperationException("Not supported yet.");
1665    }
1666
1667    @Override
1668    public void unsetMatchColumn(String[] columnName) throws SQLException {
1669        throw new UnsupportedOperationException("Not supported yet.");
1670    }
1671
1672}
1673