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