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