Bug 6795 - Deprecated sal-dom-xsql
[controller.git] / opendaylight / md-sal / sal-dom-xsql / src / main / java / org / opendaylight / controller / md / sal / dom / xsql / TablesResultSet.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.md.sal.dom.xsql;
9
10 import java.io.InputStream;
11 import java.io.Reader;
12 import java.math.BigDecimal;
13 import java.net.URL;
14 import java.sql.Array;
15 import java.sql.Blob;
16 import java.sql.Clob;
17 import java.sql.Date;
18 import java.sql.NClob;
19 import java.sql.Ref;
20 import java.sql.ResultSet;
21 import java.sql.ResultSetMetaData;
22 import java.sql.RowId;
23 import java.sql.SQLException;
24 import java.sql.SQLWarning;
25 import java.sql.SQLXML;
26 import java.sql.Statement;
27 import java.sql.Time;
28 import java.sql.Timestamp;
29 import java.util.Calendar;
30 import java.util.Map;
31 /**
32  * @author Sharon Aicler(saichler@gmail.com)
33  **/
34 /**
35  * To be removed in Nitrogen
36  */
37 @Deprecated
38 public class TablesResultSet implements ResultSet {
39
40     private String tables[] = null;
41     private int pos = -1;
42
43     public TablesResultSet(XSQLBluePrint cache) {
44         //tables = cache.getInterfaceNames();
45     }
46
47     @Override
48     public <T> T unwrap(Class<T> iface) throws SQLException {
49         // TODO Auto-generated method stub
50         return null;
51     }
52
53     @Override
54     public boolean isWrapperFor(Class<?> iface) throws SQLException {
55         // TODO Auto-generated method stub
56         return false;
57     }
58
59     @Override
60     public boolean next() throws SQLException {
61         if (tables == null) {
62             return false;
63         }
64         pos++;
65         if (pos >= tables.length) {
66             return false;
67         }
68         return true;
69     }
70
71     @Override
72     public void close() throws SQLException {
73         // TODO Auto-generated method stub
74
75     }
76
77     @Override
78     public boolean wasNull() throws SQLException {
79         // TODO Auto-generated method stub
80         return false;
81     }
82
83     @Override
84     public String getString(int columnIndex) throws SQLException {
85         return tables[pos];
86     }
87
88     @Override
89     public boolean getBoolean(int columnIndex) throws SQLException {
90         // TODO Auto-generated method stub
91         return false;
92     }
93
94     @Override
95     public byte getByte(int columnIndex) throws SQLException {
96         // TODO Auto-generated method stub
97         return 0;
98     }
99
100     @Override
101     public short getShort(int columnIndex) throws SQLException {
102         // TODO Auto-generated method stub
103         return 0;
104     }
105
106     @Override
107     public int getInt(int columnIndex) throws SQLException {
108         // TODO Auto-generated method stub
109         return 0;
110     }
111
112     @Override
113     public long getLong(int columnIndex) throws SQLException {
114         // TODO Auto-generated method stub
115         return 0;
116     }
117
118     @Override
119     public float getFloat(int columnIndex) throws SQLException {
120         // TODO Auto-generated method stub
121         return 0;
122     }
123
124     @Override
125     public double getDouble(int columnIndex) throws SQLException {
126         // TODO Auto-generated method stub
127         return 0;
128     }
129
130     @Override
131     public BigDecimal getBigDecimal(int columnIndex, int scale)
132         throws SQLException {
133         // TODO Auto-generated method stub
134         return null;
135     }
136
137     @Override
138     public byte[] getBytes(int columnIndex) throws SQLException {
139         // TODO Auto-generated method stub
140         return null;
141     }
142
143     @Override
144     public Date getDate(int columnIndex) throws SQLException {
145         // TODO Auto-generated method stub
146         return null;
147     }
148
149     @Override
150     public Time getTime(int columnIndex) throws SQLException {
151         // TODO Auto-generated method stub
152         return null;
153     }
154
155     @Override
156     public Timestamp getTimestamp(int columnIndex) throws SQLException {
157         // TODO Auto-generated method stub
158         return null;
159     }
160
161     @Override
162     public InputStream getAsciiStream(int columnIndex) throws SQLException {
163         // TODO Auto-generated method stub
164         return null;
165     }
166
167     @Override
168     public InputStream getUnicodeStream(int columnIndex) throws SQLException {
169         // TODO Auto-generated method stub
170         return null;
171     }
172
173     @Override
174     public InputStream getBinaryStream(int columnIndex) throws SQLException {
175         // TODO Auto-generated method stub
176         return null;
177     }
178
179     @Override
180     public String getString(String columnLabel) throws SQLException {
181         return tables[pos];
182     }
183
184     @Override
185     public boolean getBoolean(String columnLabel) throws SQLException {
186         // TODO Auto-generated method stub
187         return false;
188     }
189
190     @Override
191     public byte getByte(String columnLabel) throws SQLException {
192         // TODO Auto-generated method stub
193         return 0;
194     }
195
196     @Override
197     public short getShort(String columnLabel) throws SQLException {
198         // TODO Auto-generated method stub
199         return 0;
200     }
201
202     @Override
203     public int getInt(String columnLabel) throws SQLException {
204         // TODO Auto-generated method stub
205         return 0;
206     }
207
208     @Override
209     public long getLong(String columnLabel) throws SQLException {
210         // TODO Auto-generated method stub
211         return 0;
212     }
213
214     @Override
215     public float getFloat(String columnLabel) throws SQLException {
216         // TODO Auto-generated method stub
217         return 0;
218     }
219
220     @Override
221     public double getDouble(String columnLabel) throws SQLException {
222         // TODO Auto-generated method stub
223         return 0;
224     }
225
226     @Override
227     public BigDecimal getBigDecimal(String columnLabel, int scale)
228         throws SQLException {
229         // TODO Auto-generated method stub
230         return null;
231     }
232
233     @Override
234     public byte[] getBytes(String columnLabel) throws SQLException {
235         // TODO Auto-generated method stub
236         return null;
237     }
238
239     @Override
240     public Date getDate(String columnLabel) throws SQLException {
241         // TODO Auto-generated method stub
242         return null;
243     }
244
245     @Override
246     public Time getTime(String columnLabel) throws SQLException {
247         // TODO Auto-generated method stub
248         return null;
249     }
250
251     @Override
252     public Timestamp getTimestamp(String columnLabel) throws SQLException {
253         // TODO Auto-generated method stub
254         return null;
255     }
256
257     @Override
258     public InputStream getAsciiStream(String columnLabel) throws SQLException {
259         // TODO Auto-generated method stub
260         return null;
261     }
262
263     @Override
264     public InputStream getUnicodeStream(String columnLabel)
265         throws SQLException {
266         // TODO Auto-generated method stub
267         return null;
268     }
269
270     @Override
271     public InputStream getBinaryStream(String columnLabel) throws SQLException {
272         // TODO Auto-generated method stub
273         return null;
274     }
275
276     @Override
277     public SQLWarning getWarnings() throws SQLException {
278         // TODO Auto-generated method stub
279         return null;
280     }
281
282     @Override
283     public void clearWarnings() throws SQLException {
284         // TODO Auto-generated method stub
285
286     }
287
288     @Override
289     public String getCursorName() throws SQLException {
290         // TODO Auto-generated method stub
291         return null;
292     }
293
294     @Override
295     public ResultSetMetaData getMetaData() throws SQLException {
296         // TODO Auto-generated method stub
297         return null;
298     }
299
300     @Override
301     public Object getObject(int columnIndex) throws SQLException {
302         // TODO Auto-generated method stub
303         return null;
304     }
305
306     @Override
307     public Object getObject(String columnLabel) throws SQLException {
308         // TODO Auto-generated method stub
309         return null;
310     }
311
312     @Override
313     public int findColumn(String columnLabel) throws SQLException {
314         // TODO Auto-generated method stub
315         return 0;
316     }
317
318     @Override
319     public Reader getCharacterStream(int columnIndex) throws SQLException {
320         // TODO Auto-generated method stub
321         return null;
322     }
323
324     @Override
325     public Reader getCharacterStream(String columnLabel) throws SQLException {
326         // TODO Auto-generated method stub
327         return null;
328     }
329
330     @Override
331     public BigDecimal getBigDecimal(int columnIndex) throws SQLException {
332         // TODO Auto-generated method stub
333         return null;
334     }
335
336     @Override
337     public BigDecimal getBigDecimal(String columnLabel) throws SQLException {
338         // TODO Auto-generated method stub
339         return null;
340     }
341
342     @Override
343     public boolean isBeforeFirst() throws SQLException {
344         // TODO Auto-generated method stub
345         return false;
346     }
347
348     @Override
349     public boolean isAfterLast() throws SQLException {
350         // TODO Auto-generated method stub
351         return false;
352     }
353
354     @Override
355     public boolean isFirst() throws SQLException {
356         // TODO Auto-generated method stub
357         return false;
358     }
359
360     @Override
361     public boolean isLast() throws SQLException {
362         // TODO Auto-generated method stub
363         return false;
364     }
365
366     @Override
367     public void beforeFirst() throws SQLException {
368         // TODO Auto-generated method stub
369
370     }
371
372     @Override
373     public void afterLast() throws SQLException {
374         // TODO Auto-generated method stub
375
376     }
377
378     @Override
379     public boolean first() throws SQLException {
380         // TODO Auto-generated method stub
381         return false;
382     }
383
384     @Override
385     public boolean last() throws SQLException {
386         // TODO Auto-generated method stub
387         return false;
388     }
389
390     @Override
391     public int getRow() throws SQLException {
392         // TODO Auto-generated method stub
393         return 0;
394     }
395
396     @Override
397     public boolean absolute(int row) throws SQLException {
398         // TODO Auto-generated method stub
399         return false;
400     }
401
402     @Override
403     public boolean relative(int rows) throws SQLException {
404         // TODO Auto-generated method stub
405         return false;
406     }
407
408     @Override
409     public boolean previous() throws SQLException {
410         // TODO Auto-generated method stub
411         return false;
412     }
413
414     @Override
415     public void setFetchDirection(int direction) throws SQLException {
416         // TODO Auto-generated method stub
417
418     }
419
420     @Override
421     public int getFetchDirection() throws SQLException {
422         // TODO Auto-generated method stub
423         return 0;
424     }
425
426     @Override
427     public void setFetchSize(int rows) throws SQLException {
428         // TODO Auto-generated method stub
429
430     }
431
432     @Override
433     public int getFetchSize() throws SQLException {
434         // TODO Auto-generated method stub
435         return 0;
436     }
437
438     @Override
439     public int getType() throws SQLException {
440         // TODO Auto-generated method stub
441         return 0;
442     }
443
444     @Override
445     public int getConcurrency() throws SQLException {
446         // TODO Auto-generated method stub
447         return 0;
448     }
449
450     @Override
451     public boolean rowUpdated() throws SQLException {
452         // TODO Auto-generated method stub
453         return false;
454     }
455
456     @Override
457     public boolean rowInserted() throws SQLException {
458         // TODO Auto-generated method stub
459         return false;
460     }
461
462     @Override
463     public boolean rowDeleted() throws SQLException {
464         // TODO Auto-generated method stub
465         return false;
466     }
467
468     @Override
469     public void updateNull(int columnIndex) throws SQLException {
470         // TODO Auto-generated method stub
471
472     }
473
474     @Override
475     public void updateBoolean(int columnIndex, boolean x) throws SQLException {
476         // TODO Auto-generated method stub
477
478     }
479
480     @Override
481     public void updateByte(int columnIndex, byte x) throws SQLException {
482         // TODO Auto-generated method stub
483
484     }
485
486     @Override
487     public void updateShort(int columnIndex, short x) throws SQLException {
488         // TODO Auto-generated method stub
489
490     }
491
492     @Override
493     public void updateInt(int columnIndex, int x) throws SQLException {
494         // TODO Auto-generated method stub
495
496     }
497
498     @Override
499     public void updateLong(int columnIndex, long x) throws SQLException {
500         // TODO Auto-generated method stub
501
502     }
503
504     @Override
505     public void updateFloat(int columnIndex, float x) throws SQLException {
506         // TODO Auto-generated method stub
507
508     }
509
510     @Override
511     public void updateDouble(int columnIndex, double x) throws SQLException {
512         // TODO Auto-generated method stub
513
514     }
515
516     @Override
517     public void updateBigDecimal(int columnIndex, BigDecimal x)
518         throws SQLException {
519         // TODO Auto-generated method stub
520
521     }
522
523     @Override
524     public void updateString(int columnIndex, String x) throws SQLException {
525         // TODO Auto-generated method stub
526
527     }
528
529     @Override
530     public void updateBytes(int columnIndex, byte[] x) throws SQLException {
531         // TODO Auto-generated method stub
532
533     }
534
535     @Override
536     public void updateDate(int columnIndex, Date x) throws SQLException {
537         // TODO Auto-generated method stub
538
539     }
540
541     @Override
542     public void updateTime(int columnIndex, Time x) throws SQLException {
543         // TODO Auto-generated method stub
544
545     }
546
547     @Override
548     public void updateTimestamp(int columnIndex, Timestamp x)
549         throws SQLException {
550         // TODO Auto-generated method stub
551
552     }
553
554     @Override
555     public void updateAsciiStream(int columnIndex, InputStream x, int length)
556         throws SQLException {
557         // TODO Auto-generated method stub
558
559     }
560
561     @Override
562     public void updateBinaryStream(int columnIndex, InputStream x, int length)
563         throws SQLException {
564         // TODO Auto-generated method stub
565
566     }
567
568     @Override
569     public void updateCharacterStream(int columnIndex, Reader x, int length)
570         throws SQLException {
571         // TODO Auto-generated method stub
572
573     }
574
575     @Override
576     public void updateObject(int columnIndex, Object x, int scaleOrLength)
577         throws SQLException {
578         // TODO Auto-generated method stub
579
580     }
581
582     @Override
583     public void updateObject(int columnIndex, Object x) throws SQLException {
584         // TODO Auto-generated method stub
585
586     }
587
588     @Override
589     public void updateNull(String columnLabel) throws SQLException {
590         // TODO Auto-generated method stub
591
592     }
593
594     @Override
595     public void updateBoolean(String columnLabel, boolean x)
596         throws SQLException {
597         // TODO Auto-generated method stub
598
599     }
600
601     @Override
602     public void updateByte(String columnLabel, byte x) throws SQLException {
603         // TODO Auto-generated method stub
604
605     }
606
607     @Override
608     public void updateShort(String columnLabel, short x) throws SQLException {
609         // TODO Auto-generated method stub
610
611     }
612
613     @Override
614     public void updateInt(String columnLabel, int x) throws SQLException {
615         // TODO Auto-generated method stub
616
617     }
618
619     @Override
620     public void updateLong(String columnLabel, long x) throws SQLException {
621         // TODO Auto-generated method stub
622
623     }
624
625     @Override
626     public void updateFloat(String columnLabel, float x) throws SQLException {
627         // TODO Auto-generated method stub
628
629     }
630
631     @Override
632     public void updateDouble(String columnLabel, double x) throws SQLException {
633         // TODO Auto-generated method stub
634
635     }
636
637     @Override
638     public void updateBigDecimal(String columnLabel, BigDecimal x)
639         throws SQLException {
640         // TODO Auto-generated method stub
641
642     }
643
644     @Override
645     public void updateString(String columnLabel, String x) throws SQLException {
646         // TODO Auto-generated method stub
647
648     }
649
650     @Override
651     public void updateBytes(String columnLabel, byte[] x) throws SQLException {
652         // TODO Auto-generated method stub
653
654     }
655
656     @Override
657     public void updateDate(String columnLabel, Date x) throws SQLException {
658         // TODO Auto-generated method stub
659
660     }
661
662     @Override
663     public void updateTime(String columnLabel, Time x) throws SQLException {
664         // TODO Auto-generated method stub
665
666     }
667
668     @Override
669     public void updateTimestamp(String columnLabel, Timestamp x)
670         throws SQLException {
671         // TODO Auto-generated method stub
672
673     }
674
675     @Override
676     public void updateAsciiStream(String columnLabel, InputStream x, int length)
677         throws SQLException {
678         // TODO Auto-generated method stub
679
680     }
681
682     @Override
683     public void updateBinaryStream(String columnLabel, InputStream x,
684         int length)
685         throws SQLException {
686         // TODO Auto-generated method stub
687
688     }
689
690     @Override
691     public void updateCharacterStream(String columnLabel, Reader reader,
692         int length) throws SQLException {
693         // TODO Auto-generated method stub
694
695     }
696
697     @Override
698     public void updateObject(String columnLabel, Object x, int scaleOrLength)
699         throws SQLException {
700         // TODO Auto-generated method stub
701
702     }
703
704     @Override
705     public void updateObject(String columnLabel, Object x) throws SQLException {
706         // TODO Auto-generated method stub
707
708     }
709
710     @Override
711     public void insertRow() throws SQLException {
712         // TODO Auto-generated method stub
713
714     }
715
716     @Override
717     public void updateRow() throws SQLException {
718         // TODO Auto-generated method stub
719
720     }
721
722     @Override
723     public void deleteRow() throws SQLException {
724         // TODO Auto-generated method stub
725
726     }
727
728     @Override
729     public void refreshRow() throws SQLException {
730         // TODO Auto-generated method stub
731
732     }
733
734     @Override
735     public void cancelRowUpdates() throws SQLException {
736         // TODO Auto-generated method stub
737
738     }
739
740     @Override
741     public void moveToInsertRow() throws SQLException {
742         // TODO Auto-generated method stub
743
744     }
745
746     @Override
747     public void moveToCurrentRow() throws SQLException {
748         // TODO Auto-generated method stub
749
750     }
751
752     @Override
753     public Statement getStatement() throws SQLException {
754         // TODO Auto-generated method stub
755         return null;
756     }
757
758     @Override
759     public Object getObject(int columnIndex, Map<String, Class<?>> map)
760         throws SQLException {
761         // TODO Auto-generated method stub
762         return null;
763     }
764
765     @Override
766     public Ref getRef(int columnIndex) throws SQLException {
767         // TODO Auto-generated method stub
768         return null;
769     }
770
771     @Override
772     public Blob getBlob(int columnIndex) throws SQLException {
773         // TODO Auto-generated method stub
774         return null;
775     }
776
777     @Override
778     public Clob getClob(int columnIndex) throws SQLException {
779         // TODO Auto-generated method stub
780         return null;
781     }
782
783     @Override
784     public Array getArray(int columnIndex) throws SQLException {
785         // TODO Auto-generated method stub
786         return null;
787     }
788
789     @Override
790     public Object getObject(String columnLabel, Map<String, Class<?>> map)
791         throws SQLException {
792         // TODO Auto-generated method stub
793         return null;
794     }
795
796     @Override
797     public Ref getRef(String columnLabel) throws SQLException {
798         // TODO Auto-generated method stub
799         return null;
800     }
801
802     @Override
803     public Blob getBlob(String columnLabel) throws SQLException {
804         // TODO Auto-generated method stub
805         return null;
806     }
807
808     @Override
809     public Clob getClob(String columnLabel) throws SQLException {
810         // TODO Auto-generated method stub
811         return null;
812     }
813
814     @Override
815     public Array getArray(String columnLabel) throws SQLException {
816         // TODO Auto-generated method stub
817         return null;
818     }
819
820     @Override
821     public Date getDate(int columnIndex, Calendar cal) throws SQLException {
822         // TODO Auto-generated method stub
823         return null;
824     }
825
826     @Override
827     public Date getDate(String columnLabel, Calendar cal) throws SQLException {
828         // TODO Auto-generated method stub
829         return null;
830     }
831
832     @Override
833     public Time getTime(int columnIndex, Calendar cal) throws SQLException {
834         // TODO Auto-generated method stub
835         return null;
836     }
837
838     @Override
839     public Time getTime(String columnLabel, Calendar cal) throws SQLException {
840         // TODO Auto-generated method stub
841         return null;
842     }
843
844     @Override
845     public Timestamp getTimestamp(int columnIndex, Calendar cal)
846         throws SQLException {
847         // TODO Auto-generated method stub
848         return null;
849     }
850
851     @Override
852     public Timestamp getTimestamp(String columnLabel, Calendar cal)
853         throws SQLException {
854         // TODO Auto-generated method stub
855         return null;
856     }
857
858     @Override
859     public URL getURL(int columnIndex) throws SQLException {
860         // TODO Auto-generated method stub
861         return null;
862     }
863
864     @Override
865     public URL getURL(String columnLabel) throws SQLException {
866         // TODO Auto-generated method stub
867         return null;
868     }
869
870     @Override
871     public void updateRef(int columnIndex, Ref x) throws SQLException {
872         // TODO Auto-generated method stub
873
874     }
875
876     @Override
877     public void updateRef(String columnLabel, Ref x) throws SQLException {
878         // TODO Auto-generated method stub
879
880     }
881
882     @Override
883     public void updateBlob(int columnIndex, Blob x) throws SQLException {
884         // TODO Auto-generated method stub
885
886     }
887
888     @Override
889     public void updateBlob(String columnLabel, Blob x) throws SQLException {
890         // TODO Auto-generated method stub
891
892     }
893
894     @Override
895     public void updateClob(int columnIndex, Clob x) throws SQLException {
896         // TODO Auto-generated method stub
897
898     }
899
900     @Override
901     public void updateClob(String columnLabel, Clob x) throws SQLException {
902         // TODO Auto-generated method stub
903
904     }
905
906     @Override
907     public void updateArray(int columnIndex, Array x) throws SQLException {
908         // TODO Auto-generated method stub
909
910     }
911
912     @Override
913     public void updateArray(String columnLabel, Array x) throws SQLException {
914         // TODO Auto-generated method stub
915
916     }
917
918     @Override
919     public RowId getRowId(int columnIndex) throws SQLException {
920         // TODO Auto-generated method stub
921         return null;
922     }
923
924     @Override
925     public RowId getRowId(String columnLabel) throws SQLException {
926         // TODO Auto-generated method stub
927         return null;
928     }
929
930     @Override
931     public void updateRowId(int columnIndex, RowId x) throws SQLException {
932         // TODO Auto-generated method stub
933
934     }
935
936     @Override
937     public void updateRowId(String columnLabel, RowId x) throws SQLException {
938         // TODO Auto-generated method stub
939
940     }
941
942     @Override
943     public int getHoldability() throws SQLException {
944         // TODO Auto-generated method stub
945         return 0;
946     }
947
948     @Override
949     public boolean isClosed() throws SQLException {
950         // TODO Auto-generated method stub
951         return false;
952     }
953
954     @Override
955     public void updateNString(int columnIndex, String nString)
956         throws SQLException {
957         // TODO Auto-generated method stub
958
959     }
960
961     @Override
962     public void updateNString(String columnLabel, String nString)
963         throws SQLException {
964         // TODO Auto-generated method stub
965
966     }
967
968     @Override
969     public void updateNClob(int columnIndex, NClob nClob) throws SQLException {
970         // TODO Auto-generated method stub
971
972     }
973
974     @Override
975     public void updateNClob(String columnLabel, NClob nClob)
976         throws SQLException {
977         // TODO Auto-generated method stub
978
979     }
980
981     @Override
982     public NClob getNClob(int columnIndex) throws SQLException {
983         // TODO Auto-generated method stub
984         return null;
985     }
986
987     @Override
988     public NClob getNClob(String columnLabel) throws SQLException {
989         // TODO Auto-generated method stub
990         return null;
991     }
992
993     @Override
994     public SQLXML getSQLXML(int columnIndex) throws SQLException {
995         // TODO Auto-generated method stub
996         return null;
997     }
998
999     @Override
1000     public SQLXML getSQLXML(String columnLabel) throws SQLException {
1001         // TODO Auto-generated method stub
1002         return null;
1003     }
1004
1005     @Override
1006     public void updateSQLXML(int columnIndex, SQLXML xmlObject)
1007         throws SQLException {
1008         // TODO Auto-generated method stub
1009
1010     }
1011
1012     @Override
1013     public void updateSQLXML(String columnLabel, SQLXML xmlObject)
1014         throws SQLException {
1015         // TODO Auto-generated method stub
1016
1017     }
1018
1019     @Override
1020     public String getNString(int columnIndex) throws SQLException {
1021         // TODO Auto-generated method stub
1022         return null;
1023     }
1024
1025     @Override
1026     public String getNString(String columnLabel) throws SQLException {
1027         // TODO Auto-generated method stub
1028         return null;
1029     }
1030
1031     @Override
1032     public Reader getNCharacterStream(int columnIndex) throws SQLException {
1033         // TODO Auto-generated method stub
1034         return null;
1035     }
1036
1037     @Override
1038     public Reader getNCharacterStream(String columnLabel) throws SQLException {
1039         // TODO Auto-generated method stub
1040         return null;
1041     }
1042
1043     @Override
1044     public void updateNCharacterStream(int columnIndex, Reader x, long length)
1045         throws SQLException {
1046         // TODO Auto-generated method stub
1047
1048     }
1049
1050     @Override
1051     public void updateNCharacterStream(String columnLabel, Reader reader,
1052         long length) throws SQLException {
1053         // TODO Auto-generated method stub
1054
1055     }
1056
1057     @Override
1058     public void updateAsciiStream(int columnIndex, InputStream x, long length)
1059         throws SQLException {
1060         // TODO Auto-generated method stub
1061
1062     }
1063
1064     @Override
1065     public void updateBinaryStream(int columnIndex, InputStream x, long length)
1066         throws SQLException {
1067         // TODO Auto-generated method stub
1068
1069     }
1070
1071     @Override
1072     public void updateCharacterStream(int columnIndex, Reader x, long length)
1073         throws SQLException {
1074         // TODO Auto-generated method stub
1075
1076     }
1077
1078     @Override
1079     public void updateAsciiStream(String columnLabel, InputStream x,
1080         long length)
1081         throws SQLException {
1082         // TODO Auto-generated method stub
1083
1084     }
1085
1086     @Override
1087     public void updateBinaryStream(String columnLabel, InputStream x,
1088         long length) throws SQLException {
1089         // TODO Auto-generated method stub
1090
1091     }
1092
1093     @Override
1094     public void updateCharacterStream(String columnLabel, Reader reader,
1095         long length) throws SQLException {
1096         // TODO Auto-generated method stub
1097
1098     }
1099
1100     @Override
1101     public void updateBlob(int columnIndex, InputStream inputStream,
1102         long length)
1103         throws SQLException {
1104         // TODO Auto-generated method stub
1105
1106     }
1107
1108     @Override
1109     public void updateBlob(String columnLabel, InputStream inputStream,
1110         long length) throws SQLException {
1111         // TODO Auto-generated method stub
1112
1113     }
1114
1115     @Override
1116     public void updateClob(int columnIndex, Reader reader, long length)
1117         throws SQLException {
1118         // TODO Auto-generated method stub
1119
1120     }
1121
1122     @Override
1123     public void updateClob(String columnLabel, Reader reader, long length)
1124         throws SQLException {
1125         // TODO Auto-generated method stub
1126
1127     }
1128
1129     @Override
1130     public void updateNClob(int columnIndex, Reader reader, long length)
1131         throws SQLException {
1132         // TODO Auto-generated method stub
1133
1134     }
1135
1136     @Override
1137     public void updateNClob(String columnLabel, Reader reader, long length)
1138         throws SQLException {
1139         // TODO Auto-generated method stub
1140
1141     }
1142
1143     @Override
1144     public void updateNCharacterStream(int columnIndex, Reader x)
1145         throws SQLException {
1146         // TODO Auto-generated method stub
1147
1148     }
1149
1150     @Override
1151     public void updateNCharacterStream(String columnLabel, Reader reader)
1152         throws SQLException {
1153         // TODO Auto-generated method stub
1154
1155     }
1156
1157     @Override
1158     public void updateAsciiStream(int columnIndex, InputStream x)
1159         throws SQLException {
1160         // TODO Auto-generated method stub
1161
1162     }
1163
1164     @Override
1165     public void updateBinaryStream(int columnIndex, InputStream x)
1166         throws SQLException {
1167         // TODO Auto-generated method stub
1168
1169     }
1170
1171     @Override
1172     public void updateCharacterStream(int columnIndex, Reader x)
1173         throws SQLException {
1174         // TODO Auto-generated method stub
1175
1176     }
1177
1178     @Override
1179     public void updateAsciiStream(String columnLabel, InputStream x)
1180         throws SQLException {
1181         // TODO Auto-generated method stub
1182
1183     }
1184
1185     @Override
1186     public void updateBinaryStream(String columnLabel, InputStream x)
1187         throws SQLException {
1188         // TODO Auto-generated method stub
1189
1190     }
1191
1192     @Override
1193     public void updateCharacterStream(String columnLabel, Reader reader)
1194         throws SQLException {
1195         // TODO Auto-generated method stub
1196
1197     }
1198
1199     @Override
1200     public void updateBlob(int columnIndex, InputStream inputStream)
1201         throws SQLException {
1202         // TODO Auto-generated method stub
1203
1204     }
1205
1206     @Override
1207     public void updateBlob(String columnLabel, InputStream inputStream)
1208         throws SQLException {
1209         // TODO Auto-generated method stub
1210
1211     }
1212
1213     @Override
1214     public void updateClob(int columnIndex, Reader reader) throws SQLException {
1215         // TODO Auto-generated method stub
1216
1217     }
1218
1219     @Override
1220     public void updateClob(String columnLabel, Reader reader)
1221         throws SQLException {
1222         // TODO Auto-generated method stub
1223
1224     }
1225
1226     @Override
1227     public void updateNClob(int columnIndex, Reader reader)
1228         throws SQLException {
1229         // TODO Auto-generated method stub
1230
1231     }
1232
1233     @Override
1234     public void updateNClob(String columnLabel, Reader reader)
1235         throws SQLException {
1236         // TODO Auto-generated method stub
1237
1238     }
1239
1240     @Override
1241     public <T> T getObject(int columnIndex, Class<T> type) throws SQLException {
1242         // TODO Auto-generated method stub
1243         return null;
1244     }
1245
1246     @Override
1247     public <T> T getObject(String columnLabel, Class<T> type)
1248         throws SQLException {
1249         // TODO Auto-generated method stub
1250         return null;
1251     }
1252
1253 }
1254