This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch 7.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git

commit 11f3f4949c94a1c96fcfcb0fe257976ff69b5921
Author: Phil Steitz <phil.ste...@gmail.com>
AuthorDate: Sat Oct 19 14:39:01 2019 -0700

    Add TesterResulSet from Commons DBCP 1.5 branch, commit 
fa9c1eb250c76dd9af5ee23bf2ecd5351cad4e04.
---
 .../apache/tomcat/dbcp/dbcp/TesterResultSet.java   | 985 +++++++++++++++++++++
 1 file changed, 985 insertions(+)

diff --git a/test/org/apache/tomcat/dbcp/dbcp/TesterResultSet.java 
b/test/org/apache/tomcat/dbcp/dbcp/TesterResultSet.java
new file mode 100644
index 0000000..bc8134a
--- /dev/null
+++ b/test/org/apache/tomcat/dbcp/dbcp/TesterResultSet.java
@@ -0,0 +1,985 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.commons.dbcp;
+
+import java.math.BigDecimal;
+import java.sql.Array;
+import java.sql.Blob;
+import java.sql.Clob;
+import java.sql.Ref;
+import java.sql.ResultSet;
+import java.sql.ResultSetMetaData;
+import java.sql.SQLException;
+import java.sql.SQLWarning;
+import java.sql.Statement;
+import java.util.Calendar;
+/* JDBC_4_ANT_KEY_BEGIN */
+import java.io.InputStream;
+import java.io.Reader;
+import java.sql.NClob;
+import java.sql.RowId;
+import java.sql.SQLXML;
+/* JDBC_4_ANT_KEY_END */
+
+/**
+ * A dummy {@link ResultSet}, for testing purposes.
+ *
+ * @author Rodney Waldhoff
+ * @author Dirk Verbeeck
+ * @version $Revision$ $Date$
+ */
+public class TesterResultSet implements ResultSet {
+    public TesterResultSet(Statement stmt) {
+        _statement = stmt;
+    }
+
+    public TesterResultSet(Statement stmt, Object[][] data) {
+        _statement = stmt;
+        _data = data;
+    }
+
+    public TesterResultSet(Statement stmt, Object[][] data, int type, int 
concurrency) {
+        _statement = stmt;
+        _data = data;
+        _type = type;
+        _concurrency = concurrency;
+    }
+
+    protected int _type = ResultSet.TYPE_FORWARD_ONLY;
+    protected int _concurrency = ResultSet.CONCUR_READ_ONLY;
+
+    protected Object[][] _data = null;
+    protected int _currentRow = -1;
+
+    protected Statement _statement = null;
+    protected int _rowsLeft = 2;
+    protected boolean _open = true;
+
+    public boolean next() throws SQLException {
+        checkOpen();
+        if (_data != null) {
+            _currentRow++;
+            return _currentRow < _data.length;
+        }
+        else {
+            if(--_rowsLeft > 0) {
+                return true;
+            } else {
+                return false;
+            }
+        }
+    }
+
+    public void close() throws SQLException {
+        if (!_open) {
+            return;
+        }
+
+        // Not all result sets are generated from statements eg 
DatabaseMetaData
+        if (_statement != null) {
+            ((TesterStatement)_statement)._resultSet = null;
+        }
+
+        _open = false;
+    }
+
+    public boolean wasNull() throws SQLException {
+        checkOpen();
+        return false;
+    }
+
+    public String getString(int columnIndex) throws SQLException {
+        checkOpen();
+        if (columnIndex == -1) {
+            throw new SQLException("broken connection");
+        }
+        if (_data != null) {
+            return (String) getObject(columnIndex);
+        }
+        return "String" + columnIndex;
+    }
+
+    public boolean getBoolean(int columnIndex) throws SQLException {
+        checkOpen();
+        return true;
+    }
+
+    public byte getByte(int columnIndex) throws SQLException {
+        checkOpen();
+        return (byte)columnIndex;
+    }
+
+    public short getShort(int columnIndex) throws SQLException {
+        checkOpen();
+        return (short)columnIndex;
+    }
+
+    public int getInt(int columnIndex) throws SQLException {
+        checkOpen();
+        return (short)columnIndex;
+    }
+
+    public long getLong(int columnIndex) throws SQLException {
+        checkOpen();
+        return columnIndex;
+    }
+
+    public float getFloat(int columnIndex) throws SQLException {
+        checkOpen();
+        return columnIndex;
+    }
+
+    public double getDouble(int columnIndex) throws SQLException {
+        checkOpen();
+        return columnIndex;
+    }
+
+    /** @deprecated */
+    public BigDecimal getBigDecimal(int columnIndex, int scale) throws 
SQLException {
+        checkOpen();
+        return new BigDecimal(columnIndex);
+    }
+
+    public byte[] getBytes(int columnIndex) throws SQLException {
+        checkOpen();
+        return new byte[] { (byte)columnIndex };
+    }
+
+    public java.sql.Date getDate(int columnIndex) throws SQLException {
+        checkOpen();
+        return null;
+    }
+
+    public java.sql.Time getTime(int columnIndex) throws SQLException {
+        checkOpen();
+        return null;
+    }
+
+    public java.sql.Timestamp getTimestamp(int columnIndex) throws 
SQLException {
+        checkOpen();
+        return null;
+    }
+
+    public java.io.InputStream getAsciiStream(int columnIndex) throws 
SQLException {
+        checkOpen();
+        return null;
+    }
+
+    /** @deprecated */
+    public java.io.InputStream getUnicodeStream(int columnIndex) throws 
SQLException {
+        checkOpen();
+        return null;
+    }
+
+    public java.io.InputStream getBinaryStream(int columnIndex) throws 
SQLException {
+        checkOpen();
+        return null;
+    }
+
+    public String getString(String columnName) throws SQLException {
+        checkOpen();
+        return columnName;
+    }
+
+    public boolean getBoolean(String columnName) throws SQLException {
+        checkOpen();
+        return true;
+    }
+
+    public byte getByte(String columnName) throws SQLException {
+        checkOpen();
+        return (byte)(columnName.hashCode());
+    }
+
+    public short getShort(String columnName) throws SQLException {
+        checkOpen();
+        return (short)(columnName.hashCode());
+    }
+
+    public int getInt(String columnName) throws SQLException {
+        checkOpen();
+        return (columnName.hashCode());
+    }
+
+    public long getLong(String columnName) throws SQLException {
+        checkOpen();
+        return columnName.hashCode();
+    }
+
+    public float getFloat(String columnName) throws SQLException {
+        checkOpen();
+        return columnName.hashCode();
+    }
+
+    public double getDouble(String columnName) throws SQLException {
+        checkOpen();
+        return columnName.hashCode();
+    }
+
+    /** @deprecated */
+    public BigDecimal getBigDecimal(String columnName, int scale) throws 
SQLException {
+        checkOpen();
+        return new BigDecimal(columnName.hashCode());
+    }
+
+    public byte[] getBytes(String columnName) throws SQLException {
+        checkOpen();
+        return columnName.getBytes();
+    }
+
+    public java.sql.Date getDate(String columnName) throws SQLException {
+        checkOpen();
+        return null;
+    }
+
+    public java.sql.Time getTime(String columnName) throws SQLException {
+        checkOpen();
+        return null;
+    }
+
+    public java.sql.Timestamp getTimestamp(String columnName) throws 
SQLException {
+        checkOpen();
+        return null;
+    }
+
+    public java.io.InputStream getAsciiStream(String columnName) throws 
SQLException {
+        checkOpen();
+        return null;
+    }
+
+    /** @deprecated */
+    public java.io.InputStream getUnicodeStream(String columnName) throws 
SQLException {
+        checkOpen();
+        return null;
+    }
+
+    public java.io.InputStream getBinaryStream(String columnName) throws 
SQLException {
+        checkOpen();
+        return null;
+    }
+
+   public SQLWarning getWarnings() throws SQLException {
+       checkOpen();
+       return null;
+   }
+
+    public void clearWarnings() throws SQLException {
+        checkOpen();
+    }
+
+    public String getCursorName() throws SQLException {
+        checkOpen();
+        return null;
+    }
+
+    public ResultSetMetaData getMetaData() throws SQLException {
+        checkOpen();
+        return null;
+    }
+
+    public Object getObject(int columnIndex) throws SQLException {
+        checkOpen();
+        if (_data != null) {
+            return _data[_currentRow][columnIndex-1];
+        }
+        return new Object();
+    }
+
+    public Object getObject(String columnName) throws SQLException {
+        checkOpen();
+        return columnName;
+    }
+
+    public int findColumn(String columnName) throws SQLException {
+        checkOpen();
+        return 1;
+    }
+
+
+    public java.io.Reader getCharacterStream(int columnIndex) throws 
SQLException {
+        checkOpen();
+        return null;
+    }
+
+    public java.io.Reader getCharacterStream(String columnName) throws 
SQLException {
+        checkOpen();
+        return null;
+    }
+
+    public BigDecimal getBigDecimal(int columnIndex) throws SQLException {
+        checkOpen();
+        return new BigDecimal(columnIndex);
+    }
+
+    public BigDecimal getBigDecimal(String columnName) throws SQLException {
+        checkOpen();
+        return new BigDecimal(columnName.hashCode());
+    }
+
+    public boolean isBeforeFirst() throws SQLException {
+        checkOpen();
+        return _rowsLeft == 2;
+    }
+
+    public boolean isAfterLast() throws SQLException {
+        checkOpen();
+        return _rowsLeft < 0;
+    }
+
+    public boolean isFirst() throws SQLException {
+        checkOpen();
+        return _rowsLeft == 1;
+    }
+
+    public boolean isLast() throws SQLException {
+        checkOpen();
+        return _rowsLeft == 0;
+    }
+
+    public void beforeFirst() throws SQLException {
+        checkOpen();
+    }
+
+    public void afterLast() throws SQLException {
+        checkOpen();
+    }
+
+    public boolean first() throws SQLException {
+        checkOpen();
+        return false;
+    }
+
+    public boolean last() throws SQLException {
+        checkOpen();
+        return false;
+    }
+
+    public int getRow() throws SQLException {
+        checkOpen();
+        return 3 - _rowsLeft;
+    }
+
+    public boolean absolute( int row ) throws SQLException {
+        checkOpen();
+        return false;
+    }
+
+    public boolean relative( int rows ) throws SQLException {
+        checkOpen();
+        return false;
+    }
+
+    public boolean previous() throws SQLException {
+        checkOpen();
+        return false;
+    }
+
+    public void setFetchDirection(int direction) throws SQLException {
+        checkOpen();
+    }
+
+    public int getFetchDirection() throws SQLException {
+        checkOpen();
+        return 1;
+    }
+
+    public void setFetchSize(int rows) throws SQLException {
+        checkOpen();
+    }
+
+    public int getFetchSize() throws SQLException {
+        checkOpen();
+        return 2;
+    }
+
+    public int getType() throws SQLException {
+        return this._type;
+    }
+
+    public int getConcurrency() throws SQLException {
+        return this._concurrency;
+    }
+
+    public boolean rowUpdated() throws SQLException {
+        checkOpen();
+        return false;
+    }
+
+    public boolean rowInserted() throws SQLException {
+        checkOpen();
+        return false;
+    }
+
+    public boolean rowDeleted() throws SQLException {
+        checkOpen();
+        return false;
+    }
+
+    public void updateNull(int columnIndex) throws SQLException {
+        checkOpen();
+    }
+
+    public void updateBoolean(int columnIndex, boolean x) throws SQLException {
+        checkOpen();
+    }
+
+    public void updateByte(int columnIndex, byte x) throws SQLException {
+        checkOpen();
+    }
+
+    public void updateShort(int columnIndex, short x) throws SQLException {
+        checkOpen();
+    }
+
+    public void updateInt(int columnIndex, int x) throws SQLException {
+        checkOpen();
+    }
+
+    public void updateLong(int columnIndex, long x) throws SQLException {
+        checkOpen();
+    }
+
+    public void updateFloat(int columnIndex, float x) throws SQLException {
+        checkOpen();
+    }
+
+    public void updateDouble(int columnIndex, double x) throws SQLException {
+        checkOpen();
+    }
+
+    public void updateBigDecimal(int columnIndex, BigDecimal x) throws 
SQLException {
+        checkOpen();
+    }
+
+    public void updateString(int columnIndex, String x) throws SQLException {
+        checkOpen();
+    }
+
+    public void updateBytes(int columnIndex, byte x[]) throws SQLException {
+        checkOpen();
+    }
+
+    public void updateDate(int columnIndex, java.sql.Date x) throws 
SQLException {
+        checkOpen();
+    }
+
+    public void updateTime(int columnIndex, java.sql.Time x) throws 
SQLException {
+        checkOpen();
+    }
+
+    public void updateTimestamp(int columnIndex, java.sql.Timestamp x) throws 
SQLException {
+        checkOpen();
+    }
+
+
+    public void updateAsciiStream(int columnIndex,
+               java.io.InputStream x,
+               int length) throws SQLException {
+        checkOpen();
+    }
+
+    public void updateBinaryStream(int columnIndex,
+                java.io.InputStream x,
+                int length) throws SQLException {
+        checkOpen();
+    }
+
+    public void updateCharacterStream(int columnIndex,
+                 java.io.Reader x,
+                 int length) throws SQLException {
+        checkOpen();
+    }
+
+    public void updateObject(int columnIndex, Object x, int scale)
+      throws SQLException {
+        checkOpen();
+    }
+
+    public void updateObject(int columnIndex, Object x) throws SQLException {
+        checkOpen();
+    }
+
+    public void updateNull(String columnName) throws SQLException {
+        checkOpen();
+    }
+
+    public void updateBoolean(String columnName, boolean x) throws 
SQLException {
+        checkOpen();
+    }
+
+    public void updateByte(String columnName, byte x) throws SQLException {
+        checkOpen();
+    }
+
+    public void updateShort(String columnName, short x) throws SQLException {
+        checkOpen();
+    }
+
+    public void updateInt(String columnName, int x) throws SQLException {
+        checkOpen();
+    }
+
+    public void updateLong(String columnName, long x) throws SQLException {
+        checkOpen();
+    }
+
+    public void updateFloat(String columnName, float x) throws SQLException {
+        checkOpen();
+    }
+
+    public void updateDouble(String columnName, double x) throws SQLException {
+        checkOpen();
+    }
+
+    public void updateBigDecimal(String columnName, BigDecimal x) throws 
SQLException {
+        checkOpen();
+    }
+
+    public void updateString(String columnName, String x) throws SQLException {
+        checkOpen();
+    }
+
+    public void updateBytes(String columnName, byte x[]) throws SQLException {
+        checkOpen();
+    }
+
+    public void updateDate(String columnName, java.sql.Date x) throws 
SQLException {
+        checkOpen();
+    }
+
+    public void updateTime(String columnName, java.sql.Time x) throws 
SQLException {
+        checkOpen();
+    }
+
+    public void updateTimestamp(String columnName, java.sql.Timestamp x)
+      throws SQLException {
+        checkOpen();
+    }
+
+    public void updateAsciiStream(String columnName,
+               java.io.InputStream x,
+               int length) throws SQLException {
+        checkOpen();
+    }
+
+    public void updateBinaryStream(String columnName,
+                java.io.InputStream x,
+                int length) throws SQLException {
+        checkOpen();
+    }
+
+    public void updateCharacterStream(String columnName,
+                 java.io.Reader reader,
+                 int length) throws SQLException {
+        checkOpen();
+    }
+
+    public void updateObject(String columnName, Object x, int scale)
+      throws SQLException {
+        checkOpen();
+    }
+
+    public void updateObject(String columnName, Object x) throws SQLException {
+        checkOpen();
+    }
+
+    public void insertRow() throws SQLException {
+        checkOpen();
+    }
+
+    public void updateRow() throws SQLException {
+        checkOpen();
+    }
+
+    public void deleteRow() throws SQLException {
+        checkOpen();
+    }
+
+    public void refreshRow() throws SQLException {
+        checkOpen();
+    }
+
+    public void cancelRowUpdates() throws SQLException {
+        checkOpen();
+    }
+
+    public void moveToInsertRow() throws SQLException {
+        checkOpen();
+    }
+
+    public void moveToCurrentRow() throws SQLException {
+        checkOpen();
+    }
+
+    public Statement getStatement() throws SQLException {
+        checkOpen();
+        return _statement;
+    }
+
+
+    public Object getObject(int i, java.util.Map map) throws SQLException {
+        checkOpen();
+        return new Object();
+    }
+
+    public Ref getRef(int i) throws SQLException {
+        checkOpen();
+        return null;
+    }
+
+    public Blob getBlob(int i) throws SQLException {
+        checkOpen();
+        return null;
+    }
+
+    public Clob getClob(int i) throws SQLException {
+        checkOpen();
+        return null;
+    }
+
+    public Array getArray(int i) throws SQLException {
+        checkOpen();
+        return null;
+    }
+
+    public Object getObject(String colName, java.util.Map map) throws 
SQLException {
+        checkOpen();
+        return colName;
+    }
+
+    public Ref getRef(String colName) throws SQLException {
+        checkOpen();
+        return null;
+    }
+
+    public Blob getBlob(String colName) throws SQLException {
+        checkOpen();
+        return null;
+    }
+
+    public Clob getClob(String colName) throws SQLException {
+        checkOpen();
+        return null;
+    }
+
+    public Array getArray(String colName) throws SQLException {
+        checkOpen();
+        return null;
+    }
+
+    public java.sql.Date getDate(int columnIndex, Calendar cal) throws 
SQLException {
+        checkOpen();
+        return null;
+    }
+
+    public java.sql.Date getDate(String columnName, Calendar cal) throws 
SQLException {
+        checkOpen();
+        return null;
+    }
+
+    public java.sql.Time getTime(int columnIndex, Calendar cal) throws 
SQLException {
+        checkOpen();
+        return null;
+    }
+
+    public java.sql.Time getTime(String columnName, Calendar cal) throws 
SQLException {
+        checkOpen();
+        return null;
+    }
+
+    public java.sql.Timestamp getTimestamp(int columnIndex, Calendar cal) 
throws SQLException {
+        checkOpen();
+        return null;
+    }
+
+    public java.sql.Timestamp getTimestamp(String columnName, Calendar cal)
+      throws SQLException {
+        checkOpen();
+        return null;
+    }
+
+    protected void checkOpen() throws SQLException {
+        if(!_open) {
+            throw new SQLException("ResultSet is closed.");
+        }
+    }
+
+    public java.net.URL getURL(int columnIndex) throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public java.net.URL getURL(String columnName) throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateRef(int columnIndex, java.sql.Ref x)
+        throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateRef(String columnName, java.sql.Ref x)
+        throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateBlob(int columnIndex, java.sql.Blob x)
+        throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateBlob(String columnName, java.sql.Blob x)
+        throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateClob(int columnIndex, java.sql.Clob x)
+        throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateClob(String columnName, java.sql.Clob x)
+        throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateArray(int columnIndex, java.sql.Array x)
+        throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateArray(String columnName, java.sql.Array x)
+        throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+/* JDBC_4_ANT_KEY_BEGIN */
+
+    public boolean isWrapperFor(Class<?> iface) throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public <T> T unwrap(Class<T> iface) throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public RowId getRowId(int columnIndex) throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public RowId getRowId(String columnLabel) throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateRowId(int columnIndex, RowId value) throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateRowId(String columnLabel, RowId value) throws 
SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public int getHoldability() throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public boolean isClosed() throws SQLException {
+        return !_open;
+    }
+
+    public void updateNString(int columnIndex, String value) throws 
SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateNString(String columnLabel, String value) throws 
SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateNClob(int columnIndex, NClob value) throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateNClob(String columnLabel, NClob value) throws 
SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public NClob getNClob(int columnIndex) throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public NClob getNClob(String columnLabel) throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public SQLXML getSQLXML(int columnIndex) throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public SQLXML getSQLXML(String columnLabel) throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateSQLXML(int columnIndex, SQLXML value) throws 
SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateSQLXML(String columnLabel, SQLXML value) throws 
SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public String getNString(int columnIndex) throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public String getNString(String columnLabel) throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public Reader getNCharacterStream(int columnIndex) throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public Reader getNCharacterStream(String columnLabel) throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateNCharacterStream(int columnIndex, Reader reader, long 
length) throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateNCharacterStream(String columnLabel, Reader reader, long 
length) throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateAsciiStream(int columnIndex, InputStream inputStream, 
long length) throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateBinaryStream(int columnIndex, InputStream inputStream, 
long length) throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateCharacterStream(int columnIndex, Reader reader, long 
length) throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateAsciiStream(String columnLabel, InputStream inputStream, 
long length) throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateBinaryStream(String columnLabel, InputStream 
inputStream, long length) throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateCharacterStream(String columnLabel, Reader reader, long 
length) throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateBlob(int columnIndex, InputStream inputStream, long 
length) throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateBlob(String columnLabel, InputStream inputStream, long 
length) throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateClob(int columnIndex, Reader reader, long length) throws 
SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateClob(String columnLabel, Reader reader, long length) 
throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateNClob(int columnIndex, Reader reader, long length) 
throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateNClob(String columnLabel, Reader reader, long length) 
throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateNCharacterStream(int columnIndex, Reader reader) throws 
SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateNCharacterStream(String columnLabel, Reader reader) 
throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateAsciiStream(int columnIndex, InputStream inputStream) 
throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateBinaryStream(int columnIndex, InputStream inputStream) 
throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateCharacterStream(int columnIndex, Reader reader) throws 
SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateAsciiStream(String columnLabel, InputStream inputStream) 
throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateBinaryStream(String columnLabel, InputStream 
inputStream) throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateCharacterStream(String columnLabel, Reader reader) 
throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateBlob(int columnIndex, InputStream inputStream) throws 
SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateBlob(String columnLabel, InputStream inputStream) throws 
SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateClob(int columnIndex, Reader reader) throws SQLException 
{
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateClob(String columnLabel, Reader reader) throws 
SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateNClob(int columnIndex, Reader reader) throws 
SQLException {
+        throw new SQLException("Not implemented.");
+    }
+
+    public void updateNClob(String columnLabel, Reader reader) throws 
SQLException {
+        throw new SQLException("Not implemented.");
+    }
+/* JDBC_4_ANT_KEY_END */
+
+    /* JDBC_4_1_ANT_KEY_BEGIN */
+    @Override
+    public <T> T getObject(int columnIndex, Class<T> type) throws SQLException 
{
+        throw new SQLException("Not implemented.");
+    }
+
+    @Override
+    public <T> T getObject(String columnLabel, Class<T> type)
+            throws SQLException {
+        throw new SQLException("Not implemented.");
+    }
+    /* JDBC_4_1_ANT_KEY_END */
+}


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to