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