1561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes/*
2561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes * Licensed to the Apache Software Foundation (ASF) under one or more
3561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes * contributor license agreements.  See the NOTICE file distributed with
4561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes * this work for additional information regarding copyright ownership.
5561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes * The ASF licenses this file to You under the Apache License, Version 2.0
6561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes * (the "License"); you may not use this file except in compliance with
7561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes * the License.  You may obtain a copy of the License at
8561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes *
9561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes *     http://www.apache.org/licenses/LICENSE-2.0
10561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes *
11561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes * Unless required by applicable law or agreed to in writing, software
12561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes * distributed under the License is distributed on an "AS IS" BASIS,
13561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes * See the License for the specific language governing permissions and
15561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes * limitations under the License.
16561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes */
17561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
18561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughespackage org.apache.harmony.sql.tests.javax.sql;
19561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
20561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughesimport java.io.InputStream;
21561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughesimport java.io.Reader;
22561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughesimport java.math.BigDecimal;
23561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughesimport java.net.URL;
24561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughesimport java.sql.Array;
25561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughesimport java.sql.Blob;
26561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughesimport java.sql.Clob;
27561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughesimport java.sql.Date;
28561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughesimport java.sql.NClob;
29561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughesimport java.sql.Ref;
30561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughesimport java.sql.ResultSetMetaData;
31561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughesimport java.sql.RowId;
32561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughesimport java.sql.SQLException;
33561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughesimport java.sql.SQLWarning;
34561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughesimport java.sql.SQLXML;
35561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughesimport java.sql.Statement;
36561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughesimport java.sql.Time;
37561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughesimport java.sql.Timestamp;
38561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughesimport java.util.Calendar;
39561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughesimport java.util.Map;
40561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughesimport javax.sql.RowSet;
41561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughesimport javax.sql.RowSetListener;
42561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
43561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes@SuppressWarnings("deprecation")
44561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughesclass Impl_RowSet implements RowSet {
45561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void addRowSetListener(RowSetListener theListener) {
46561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
47561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
48561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void clearParameters() throws SQLException {
49561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
50561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
51561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void execute() throws SQLException {
52561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
53561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
54561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public String getCommand() {
55561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
56561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
57561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
58561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public String getDataSourceName() {
59561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
60561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
61561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
62561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public boolean getEscapeProcessing() throws SQLException {
63561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return false;
64561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
65561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
66561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public int getMaxFieldSize() throws SQLException {
67561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return 0;
68561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
69561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
70561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public int getMaxRows() throws SQLException {
71561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return 0;
72561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
73561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
74561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public String getPassword() {
75561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
76561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
77561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
78561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public int getQueryTimeout() throws SQLException {
79561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return 0;
80561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
81561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
82561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public int getTransactionIsolation() {
83561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return 0;
84561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
85561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
86561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public Map<String, Class<?>> getTypeMap() throws SQLException {
87561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
88561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
89561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
90561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public String getUrl() throws SQLException {
91561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
92561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
93561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
94561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public String getUsername() {
95561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
96561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
97561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
98561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public boolean isReadOnly() {
99561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return false;
100561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
101561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
102561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void removeRowSetListener(RowSetListener theListener) {
103561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
104561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
105561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setArray(int parameterIndex, Array theArray)
106561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
107561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
108561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
109561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setAsciiStream(int parameterIndex, InputStream theInputStream,
110561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            int length) throws SQLException {
111561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
112561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
113561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setBigDecimal(int parameterIndex, BigDecimal theBigDecimal)
114561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
115561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
116561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
117561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setBinaryStream(int parameterIndex, InputStream theInputStream,
118561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            int length) throws SQLException {
119561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
120561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
121561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setBlob(int parameterIndex, Blob theBlob) throws SQLException {
122561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
123561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
124561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setBoolean(int parameterIndex, boolean theBoolean)
125561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
126561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
127561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
128561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setByte(int parameterIndex, byte theByte) throws SQLException {
129561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
130561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
131561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setBytes(int parameterIndex, byte[] theByteArray)
132561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
133561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
134561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
135561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setCharacterStream(int parameterIndex, Reader theReader,
136561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            int length) throws SQLException {
137561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
138561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
139561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setClob(int parameterIndex, Clob theClob) throws SQLException {
140561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
141561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
142561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setCommand(String cmd) throws SQLException {
143561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
144561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
145561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setConcurrency(int concurrency) throws SQLException {
146561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
147561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
148561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setDataSourceName(String name) throws SQLException {
149561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
150561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
151561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setDate(int parameterIndex, Date theDate, Calendar theCalendar)
152561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
153561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
154561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
155561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setDate(int parameterIndex, Date theDate) throws SQLException {
156561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
157561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
158561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setDouble(int parameterIndex, double theDouble)
159561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
160561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
161561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
162561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setEscapeProcessing(boolean enable) throws SQLException {
163561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
164561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
165561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setFloat(int parameterIndex, float theFloat)
166561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
167561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
168561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
169561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setInt(int parameterIndex, int theInteger) throws SQLException {
170561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
171561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
172561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setLong(int parameterIndex, long theLong) throws SQLException {
173561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
174561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
175561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setMaxFieldSize(int max) throws SQLException {
176561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
177561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
178561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setMaxRows(int max) throws SQLException {
179561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
180561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
181561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setNull(int parameterIndex, int sqlType, String typeName)
182561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
183561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
184561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
185561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setNull(int parameterIndex, int sqlType) throws SQLException {
186561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
187561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
188561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setObject(int parameterIndex, Object theObject,
189561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            int targetSqlType, int scale) throws SQLException {
190561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
191561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
192561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setObject(int parameterIndex, Object theObject,
193561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            int targetSqlType) throws SQLException {
194561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
195561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
196561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setObject(int parameterIndex, Object theObject)
197561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
198561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
199561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
200561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setPassword(String password) throws SQLException {
201561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
202561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
203561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setQueryTimeout(int seconds) throws SQLException {
204561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
205561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
206561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setReadOnly(boolean readOnly) throws SQLException {
207561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
208561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
209561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setRef(int parameterIndex, Ref theRef) throws SQLException {
210561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
211561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
212561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setShort(int parameterIndex, short theShort)
213561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
214561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
215561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
216561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setString(int parameterIndex, String theString)
217561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
218561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
219561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
220561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setTime(int parameterIndex, Time theTime, Calendar theCalendar)
221561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
222561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
223561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
224561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setTime(int parameterIndex, Time theTime) throws SQLException {
225561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
226561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
227561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setTimestamp(int parameterIndex, Timestamp theTimestamp,
228561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            Calendar theCalendar) throws SQLException {
229561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
230561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
231561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setTimestamp(int parameterIndex, Timestamp theTimestamp)
232561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
233561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
234561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
235561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setTransactionIsolation(int level) throws SQLException {
236561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
237561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
238561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setType(int type) throws SQLException {
239561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
240561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
241561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setTypeMap(Map<String, Class<?>> theTypeMap)
242561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
243561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
244561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
245561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setUrl(String theURL) throws SQLException {
246561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
247561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
248561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setUsername(String theUsername) throws SQLException {
249561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
250561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
251561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public boolean absolute(int row) throws SQLException {
252561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return false;
253561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
254561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
255561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void afterLast() throws SQLException {
256561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
257561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
258561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void beforeFirst() throws SQLException {
259561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
260561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
261561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void cancelRowUpdates() throws SQLException {
262561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
263561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
264561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void clearWarnings() throws SQLException {
265561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
266561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
267561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void close() throws SQLException {
268561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
269561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
270561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void deleteRow() throws SQLException {
271561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
272561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
273561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public int findColumn(String columnName) throws SQLException {
274561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return 0;
275561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
276561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
277561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public boolean first() throws SQLException {
278561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return false;
279561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
280561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
281561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public Array getArray(int columnIndex) throws SQLException {
282561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
283561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
284561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
285561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public Array getArray(String colName) throws SQLException {
286561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
287561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
288561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
289561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public InputStream getAsciiStream(int columnIndex) throws SQLException {
290561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
291561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
292561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
293561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public InputStream getAsciiStream(String columnName) throws SQLException {
294561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
295561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
296561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
297561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public BigDecimal getBigDecimal(int columnIndex, int scale)
298561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
299561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
300561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
301561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
302561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public BigDecimal getBigDecimal(int columnIndex) throws SQLException {
303561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
304561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
305561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
306561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public BigDecimal getBigDecimal(String columnName, int scale)
307561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
308561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
309561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
310561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
311561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public BigDecimal getBigDecimal(String columnName) throws SQLException {
312561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
313561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
314561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
315561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public InputStream getBinaryStream(int columnIndex) throws SQLException {
316561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
317561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
318561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
319561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public InputStream getBinaryStream(String columnName) throws SQLException {
320561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
321561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
322561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
323561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public Blob getBlob(int columnIndex) throws SQLException {
324561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
325561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
326561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
327561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public Blob getBlob(String columnName) throws SQLException {
328561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
329561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
330561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
331561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public boolean getBoolean(int columnIndex) throws SQLException {
332561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return false;
333561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
334561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
335561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public boolean getBoolean(String columnName) throws SQLException {
336561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return false;
337561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
338561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
339561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public byte getByte(int columnIndex) throws SQLException {
340561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return 0;
341561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
342561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
343561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public byte getByte(String columnName) throws SQLException {
344561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return 0;
345561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
346561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
347561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public byte[] getBytes(int columnIndex) throws SQLException {
348561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
349561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
350561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
351561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public byte[] getBytes(String columnName) throws SQLException {
352561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
353561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
354561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
355561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public Reader getCharacterStream(int columnIndex) throws SQLException {
356561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
357561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
358561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
359561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public Reader getCharacterStream(String columnName) throws SQLException {
360561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
361561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
362561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
363561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public Clob getClob(int columnIndex) throws SQLException {
364561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
365561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
366561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
367561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public Clob getClob(String colName) throws SQLException {
368561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
369561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
370561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
371561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public int getConcurrency() throws SQLException {
372561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return 0;
373561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
374561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
375561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public String getCursorName() throws SQLException {
376561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
377561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
378561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
379561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public Date getDate(int columnIndex, Calendar cal) throws SQLException {
380561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
381561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
382561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
383561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public Date getDate(int columnIndex) throws SQLException {
384561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
385561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
386561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
387561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public Date getDate(String columnName, Calendar cal) throws SQLException {
388561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
389561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
390561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
391561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public Date getDate(String columnName) throws SQLException {
392561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
393561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
394561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
395561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public double getDouble(int columnIndex) throws SQLException {
396561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return 0;
397561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
398561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
399561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public double getDouble(String columnName) throws SQLException {
400561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return 0;
401561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
402561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
403561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public int getFetchDirection() throws SQLException {
404561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return 0;
405561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
406561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
407561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public int getFetchSize() throws SQLException {
408561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return 0;
409561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
410561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
411561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public float getFloat(int columnIndex) throws SQLException {
412561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return 0;
413561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
414561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
415561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public float getFloat(String columnName) throws SQLException {
416561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return 0;
417561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
418561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
419561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public int getInt(int columnIndex) throws SQLException {
420561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return 0;
421561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
422561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
423561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public int getInt(String columnName) throws SQLException {
424561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return 0;
425561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
426561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
427561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public long getLong(int columnIndex) throws SQLException {
428561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return 0;
429561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
430561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
431561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public long getLong(String columnName) throws SQLException {
432561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return 0;
433561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
434561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
435561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public ResultSetMetaData getMetaData() throws SQLException {
436561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
437561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
438561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
439561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public Object getObject(int columnIndex, Map<String, Class<?>> map)
440561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
441561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
442561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
443561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
444561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public Object getObject(int columnIndex) throws SQLException {
445561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
446561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
447561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
448561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public Object getObject(String columnName, Map<String, Class<?>> map)
449561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
450561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
451561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
452561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
453561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public Object getObject(String columnName) throws SQLException {
454561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
455561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
456561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
457561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public Ref getRef(int columnIndex) throws SQLException {
458561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
459561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
460561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
461561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public Ref getRef(String colName) throws SQLException {
462561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
463561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
464561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
465561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public int getRow() throws SQLException {
466561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return 0;
467561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
468561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
469561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public short getShort(int columnIndex) throws SQLException {
470561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return 0;
471561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
472561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
473561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public short getShort(String columnName) throws SQLException {
474561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return 0;
475561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
476561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
477561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public Statement getStatement() throws SQLException {
478561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
479561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
480561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
481561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public String getString(int columnIndex) throws SQLException {
482561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
483561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
484561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
485561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public String getString(String columnName) throws SQLException {
486561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
487561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
488561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
489561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public Time getTime(int columnIndex, Calendar cal) throws SQLException {
490561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
491561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
492561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
493561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public Time getTime(int columnIndex) throws SQLException {
494561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
495561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
496561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
497561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public Time getTime(String columnName, Calendar cal) throws SQLException {
498561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
499561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
500561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
501561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public Time getTime(String columnName) throws SQLException {
502561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
503561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
504561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
505561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public Timestamp getTimestamp(int columnIndex, Calendar cal)
506561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
507561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
508561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
509561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
510561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public Timestamp getTimestamp(int columnIndex) throws SQLException {
511561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
512561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
513561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
514561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public Timestamp getTimestamp(String columnName, Calendar cal)
515561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
516561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
517561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
518561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
519561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public Timestamp getTimestamp(String columnName) throws SQLException {
520561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
521561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
522561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
523561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public int getType() throws SQLException {
524561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return 0;
525561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
526561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
527561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public InputStream getUnicodeStream(int columnIndex) throws SQLException {
528561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
529561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
530561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
531561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public InputStream getUnicodeStream(String columnName) throws SQLException {
532561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
533561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
534561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
535561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public URL getURL(int columnIndex) throws SQLException {
536561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
537561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
538561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
539561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public URL getURL(String columnName) throws SQLException {
540561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
541561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
542561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
543561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public SQLWarning getWarnings() throws SQLException {
544561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
545561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
546561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
547561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void insertRow() throws SQLException {
548561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
549561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
550561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public boolean isAfterLast() throws SQLException {
551561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return false;
552561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
553561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
554561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public boolean isBeforeFirst() throws SQLException {
555561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return false;
556561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
557561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
558561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public boolean isFirst() throws SQLException {
559561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return false;
560561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
561561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
562561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public boolean isLast() throws SQLException {
563561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return false;
564561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
565561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
566561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public boolean last() throws SQLException {
567561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return false;
568561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
569561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
570561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void moveToCurrentRow() throws SQLException {
571561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
572561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
573561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void moveToInsertRow() throws SQLException {
574561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
575561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
576561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public boolean next() throws SQLException {
577561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return false;
578561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
579561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
580561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public boolean previous() throws SQLException {
581561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return false;
582561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
583561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
584561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void refreshRow() throws SQLException {
585561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
586561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
587561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public boolean relative(int rows) throws SQLException {
588561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return false;
589561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
590561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
591561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public boolean rowDeleted() throws SQLException {
592561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return false;
593561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
594561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
595561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public boolean rowInserted() throws SQLException {
596561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return false;
597561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
598561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
599561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public boolean rowUpdated() throws SQLException {
600561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return false;
601561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
602561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
603561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setFetchDirection(int direction) throws SQLException {
604561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
605561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
606561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setFetchSize(int rows) throws SQLException {
607561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
608561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
609561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateArray(int columnIndex, Array x) throws SQLException {
610561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
611561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
612561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateArray(String columnName, Array x) throws SQLException {
613561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
614561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
615561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateAsciiStream(int columnIndex, InputStream x, int length)
616561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
617561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
618561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
619561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateAsciiStream(String columnName, InputStream x, int length)
620561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
621561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
622561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
623561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateBigDecimal(int columnIndex, BigDecimal x)
624561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
625561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
626561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
627561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateBigDecimal(String columnName, BigDecimal x)
628561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
629561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
630561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
631561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateBinaryStream(int columnIndex, InputStream x, int length)
632561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
633561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
634561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
635561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateBinaryStream(String columnName, InputStream x, int length)
636561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
637561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
638561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
639561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateBlob(int columnIndex, Blob x) throws SQLException {
640561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
641561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
642561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateBlob(String columnName, Blob x) throws SQLException {
643561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
644561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
645561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateBoolean(int columnIndex, boolean x) throws SQLException {
646561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
647561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
648561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateBoolean(String columnName, boolean x) throws SQLException {
649561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
650561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
651561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateByte(int columnIndex, byte x) throws SQLException {
652561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
653561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
654561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateByte(String columnName, byte x) throws SQLException {
655561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
656561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
657561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateBytes(int columnIndex, byte[] x) throws SQLException {
658561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
659561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
660561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateBytes(String columnName, byte[] x) throws SQLException {
661561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
662561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
663561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateCharacterStream(int columnIndex, Reader x, int length)
664561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
665561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
666561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
667561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateCharacterStream(String columnName, Reader reader,
668561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            int length) throws SQLException {
669561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
670561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
671561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateClob(int columnIndex, Clob x) throws SQLException {
672561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
673561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
674561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateClob(String columnName, Clob x) throws SQLException {
675561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
676561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
677561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateDate(int columnIndex, Date x) throws SQLException {
678561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
679561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
680561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateDate(String columnName, Date x) throws SQLException {
681561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
682561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
683561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateDouble(int columnIndex, double x) throws SQLException {
684561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
685561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
686561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateDouble(String columnName, double x) throws SQLException {
687561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
688561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
689561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateFloat(int columnIndex, float x) throws SQLException {
690561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
691561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
692561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateFloat(String columnName, float x) throws SQLException {
693561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
694561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
695561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateInt(int columnIndex, int x) throws SQLException {
696561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
697561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
698561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateInt(String columnName, int x) throws SQLException {
699561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
700561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
701561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateLong(int columnIndex, long x) throws SQLException {
702561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
703561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
704561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateLong(String columnName, long x) throws SQLException {
705561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
706561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
707561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateNull(int columnIndex) throws SQLException {
708561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
709561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
710561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateNull(String columnName) throws SQLException {
711561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
712561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
713561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateObject(int columnIndex, Object x, int scale)
714561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
715561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
716561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
717561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateObject(int columnIndex, Object x) throws SQLException {
718561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
719561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
720561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateObject(String columnName, Object x, int scale)
721561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
722561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
723561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
724561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateObject(String columnName, Object x) throws SQLException {
725561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
726561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
727561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateRef(int columnIndex, Ref x) throws SQLException {
728561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
729561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
730561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateRef(String columnName, Ref x) throws SQLException {
731561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
732561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
733561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateRow() throws SQLException {
734561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
735561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
736561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateShort(int columnIndex, short x) throws SQLException {
737561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
738561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
739561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateShort(String columnName, short x) throws SQLException {
740561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
741561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
742561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateString(int columnIndex, String x) throws SQLException {
743561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
744561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
745561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateString(String columnName, String x) throws SQLException {
746561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
747561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
748561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateTime(int columnIndex, Time x) throws SQLException {
749561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
750561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
751561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateTime(String columnName, Time x) throws SQLException {
752561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
753561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
754561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateTimestamp(int columnIndex, Timestamp x)
755561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
756561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
757561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
758561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateTimestamp(String columnName, Timestamp x)
759561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
760561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
761561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
762561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public boolean wasNull() throws SQLException {
763561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return false;
764561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
765561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
766561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public boolean isWrapperFor(Class<?> iface) throws SQLException {
767561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return false;
768561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
769561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
770561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public <T> T unwrap(Class<T> iface) throws SQLException {
771561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
772561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
773561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
774561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public int getHoldability() throws SQLException {
775561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return 0;
776561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
777561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
778561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public Reader getNCharacterStream(int columnIndex) throws SQLException {
779561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
780561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
781561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
782561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public Reader getNCharacterStream(String columnLabel) throws SQLException {
783561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
784561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
785561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
786561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public NClob getNClob(int columnIndex) throws SQLException {
787561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
788561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
789561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
790561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public NClob getNClob(String columnLabel) throws SQLException {
791561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
792561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
793561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
794561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public String getNString(int columnIndex) throws SQLException {
795561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
796561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
797561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
798561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public String getNString(String columnLabel) throws SQLException {
799561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
800561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
801561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
802561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public RowId getRowId(int columnIndex) throws SQLException {
803561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
804561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
805561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
806561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public RowId getRowId(String columnLabel) throws SQLException {
807561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
808561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
809561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
810561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public SQLXML getSQLXML(int columnIndex) throws SQLException {
811561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
812561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
813561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
814561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public SQLXML getSQLXML(String columnLabel) throws SQLException {
815561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return null;
816561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
817561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
818561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public boolean isClosed() throws SQLException {
819561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes        return false;
820561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
821561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
822561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateAsciiStream(int columnIndex, InputStream x, long length)
823561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
824561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
825561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
826561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
827561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateAsciiStream(String columnLabel, InputStream x, long length)
828561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
829561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
830561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
831561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
832561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateAsciiStream(int columnIndex, InputStream x)
833561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
834561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
835561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
836561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
837561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateAsciiStream(String columnLabel, InputStream x)
838561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
839561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
840561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
841561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
842561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateBinaryStream(int columnIndex, InputStream x, long length)
843561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
844561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
845561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
846561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
847561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateBinaryStream(String columnLabel, InputStream x,
848561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            long length) throws SQLException {
849561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
850561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
851561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
852561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateBinaryStream(int columnIndex, InputStream x)
853561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
854561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
855561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
856561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
857561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateBinaryStream(String columnLabel, InputStream x)
858561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
859561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
860561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
861561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
862561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateBlob(int columnIndex, InputStream inputStream, long length)
863561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
864561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
865561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
866561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
867561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateBlob(String columnLabel, InputStream inputStream,
868561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            long length) throws SQLException {
869561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
870561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
871561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
872561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateBlob(int columnIndex, InputStream inputStream)
873561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
874561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
875561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
876561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
877561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateBlob(String columnLabel, InputStream inputStream)
878561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
879561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
880561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
881561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
882561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateCharacterStream(int columnIndex, Reader x, long length)
883561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
884561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
885561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
886561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
887561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateCharacterStream(String columnLabel, Reader reader,
888561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            long length) throws SQLException {
889561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
890561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
891561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
892561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateCharacterStream(int columnIndex, Reader x)
893561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
894561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
895561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
896561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
897561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateCharacterStream(String columnLabel, Reader reader)
898561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
899561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
900561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
901561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
902561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateClob(int columnIndex, Reader reader, long length)
903561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
904561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
905561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
906561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
907561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateClob(String columnLabel, Reader reader, long length)
908561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
909561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
910561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
911561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
912561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateClob(int columnIndex, Reader reader) throws SQLException {
913561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
914561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
915561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
916561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateClob(String columnLabel, Reader reader)
917561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
918561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
919561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
920561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
921561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateNCharacterStream(int columnIndex, Reader x, long length)
922561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
923561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
924561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
925561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
926561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateNCharacterStream(String columnLabel, Reader reader,
927561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            long length) throws SQLException {
928561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
929561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
930561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
931561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateNCharacterStream(int columnIndex, Reader x)
932561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
933561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
934561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
935561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
936561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateNCharacterStream(String columnLabel, Reader reader)
937561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
938561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
939561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
940561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
941561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateNClob(int columnIndex, NClob nClob) throws SQLException {
942561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
943561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
944561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
945561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateNClob(String columnLabel, NClob nClob)
946561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
947561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
948561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
949561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
950561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateNClob(int columnIndex, Reader reader, long length)
951561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
952561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
953561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
954561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
955561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateNClob(String columnLabel, Reader reader, long length)
956561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
957561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
958561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
959561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
960561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateNClob(int columnIndex, Reader reader) throws SQLException {
961561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
962561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
963561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
964561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateNClob(String columnLabel, Reader reader)
965561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
966561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
967561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
968561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
969561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateNString(int columnIndex, String nString)
970561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
971561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
972561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
973561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
974561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateNString(String columnLabel, String nString)
975561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
976561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
977561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
978561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
979561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateRowId(int columnIndex, RowId x) throws SQLException {
980561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
981561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
982561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
983561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateRowId(String columnLabel, RowId x) throws SQLException {
984561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
985561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
986561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
987561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateSQLXML(int columnIndex, SQLXML xmlObject)
988561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
989561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
990561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
991561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
992561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void updateSQLXML(String columnLabel, SQLXML xmlObject)
993561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
994561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
995561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
996561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
997561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setAsciiStream(int parameterIndex, InputStream theInputStream)
998561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
999561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1000561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1001561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1002561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setAsciiStream(String parameterName, InputStream theInputStream)
1003561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
1004561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1005561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1006561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1007561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setAsciiStream(String parameterName,
1008561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            InputStream theInputStream, int length) throws SQLException {
1009561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1010561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1011561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1012561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setBigDecimal(String parameterName, BigDecimal theBigDecimal)
1013561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
1014561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1015561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1016561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1017561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setBinaryStream(int parameterIndex, InputStream theInputStream)
1018561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
1019561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1020561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1021561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1022561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setBinaryStream(String parameterName, InputStream theInputStream)
1023561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
1024561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1025561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1026561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1027561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setBinaryStream(String parameterName,
1028561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            InputStream theInputStream, int length) throws SQLException {
1029561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1030561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1031561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1032561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setBlob(int parameterIndex, InputStream theInputStream)
1033561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
1034561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1035561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1036561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1037561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setBlob(int parameterIndex, InputStream theInputStream,
1038561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            long length) throws SQLException {
1039561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1040561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1041561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1042561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setBlob(String parameterName, InputStream theInputStream)
1043561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
1044561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1045561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1046561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1047561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setBlob(String parameterName, InputStream theInputStream,
1048561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            long length) throws SQLException {
1049561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1050561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1051561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1052561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setBlob(String parameterName, Blob theBlob) throws SQLException {
1053561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1054561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1055561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1056561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setBoolean(String parameterName, boolean theBoolean)
1057561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
1058561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1059561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1060561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1061561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setByte(String parameterName, byte theByte) throws SQLException {
1062561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1063561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1064561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1065561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setBytes(String parametername, byte[] theByteArray)
1066561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
1067561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1068561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1069561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1070561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setCharacterStream(int parameterIndex, Reader theReader)
1071561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
1072561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1073561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1074561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1075561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setCharacterStream(String parameterName, Reader theReader)
1076561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
1077561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1078561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1079561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1080561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setCharacterStream(String parameterName, Reader theReader,
1081561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            int length) throws SQLException {
1082561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1083561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1084561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1085561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setClob(int parameterIndex, Reader theReader)
1086561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
1087561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1088561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1089561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1090561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setClob(int parameterIndex, Reader theReader, long length)
1091561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
1092561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1093561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1094561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1095561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setClob(String parameterName, Reader theReader)
1096561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
1097561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1098561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1099561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1100561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setClob(String parameterName, Reader theReader, long length)
1101561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
1102561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1103561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1104561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1105561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setDate(String parameterName, Date theDate) throws SQLException {
1106561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1107561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1108561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1109561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setDate(String parameterName, Date theDate, Calendar theCalendar)
1110561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
1111561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1112561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1113561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1114561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setDouble(String parameterName, double theDouble)
1115561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
1116561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1117561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1118561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1119561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setFloat(String parameterName, float theFloat)
1120561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
1121561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1122561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1123561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1124561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setInt(String parameterName, int theInteger)
1125561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
1126561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1127561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1128561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1129561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setLong(String parameterName, long theLong) throws SQLException {
1130561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1131561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1132561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1133561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setNCharacterStream(int parameterIndex, Reader theReader)
1134561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
1135561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1136561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1137561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1138561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setNCharacterStream(int parameterIndex, Reader theReader,
1139561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            long length) throws SQLException {
1140561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1141561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1142561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1143561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setNCharacterStream(String parameterName, Reader theReader)
1144561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
1145561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1146561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1147561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1148561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setNCharacterStream(String parameterName, Reader theReader,
1149561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            long length) throws SQLException {
1150561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1151561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1152561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1153561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setNClob(int parameterIndex, NClob theNClob)
1154561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
1155561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1156561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1157561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1158561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setNClob(int parameterIndex, Reader theReader)
1159561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
1160561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1161561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1162561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1163561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setNClob(int parameterIndex, Reader theReader, long length)
1164561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
1165561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1166561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1167561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1168561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setNClob(String parameterName, Reader theReader)
1169561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
1170561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1171561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1172561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1173561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setNClob(String parameterName, Reader theReader, long length)
1174561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
1175561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1176561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1177561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1178561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setNString(int parameterIndex, String theNString)
1179561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
1180561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1181561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1182561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1183561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setNString(String parameterName, String theNString)
1184561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
1185561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1186561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1187561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1188561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setNull(String parameterName, int sqlType) throws SQLException {
1189561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1190561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1191561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1192561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setNull(String parameterName, int sqlType, String typeName)
1193561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
1194561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1195561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1196561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1197561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setObject(String parameterName, Object theObject)
1198561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
1199561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1200561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1201561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1202561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setObject(String parameterName, Object theObject,
1203561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            int targetSqlType) throws SQLException {
1204561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1205561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1206561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1207561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setObject(String parameterName, Object theObject,
1208561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            int targetSqlType, int scale) throws SQLException {
1209561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1210561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1211561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1212561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setRowId(int parameterIndex, RowId theRowId)
1213561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
1214561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1215561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1216561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1217561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setRowId(String parameterName, RowId theRowId)
1218561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
1219561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1220561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1221561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1222561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setSQLXML(int parameterIndex, SQLXML theSQLXML)
1223561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
1224561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1225561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1226561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1227561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setSQLXML(String parameterName, SQLXML theSQLXML)
1228561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
1229561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1230561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1231561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1232561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setShort(String parameterName, short theShort)
1233561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
1234561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1235561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1236561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1237561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setString(String parameterName, String theString)
1238561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
1239561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1240561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1241561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1242561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setTime(String parameterName, Time theTime) throws SQLException {
1243561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1244561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1245561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1246561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setTime(String parameterName, Time theTime, Calendar theCalendar)
1247561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
1248561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1249561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1250561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1251561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setTimestamp(String parameterName, Timestamp theTimestamp)
1252561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            throws SQLException {
1253561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1254561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1255561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1256561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setTimestamp(String parameterName, Timestamp theTimestamp,
1257561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes            Calendar theCalendar) throws SQLException {
1258561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1259561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1260561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1261561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setURL(int parameterIndex, URL theURL) throws SQLException {
1262561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1263561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1264561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1265561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setClob(String parameterName, Clob x) throws SQLException {
1266561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1267561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1268561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1269561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    public void setNClob(String parameterName, NClob value) throws SQLException {
1270561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes
1271561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes    }
1272561ee011997c6c2f1befbfaa9d5f0a99771c1d63Elliott Hughes}
1273