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