franta-hg@171: /** franta-hg@171: * SQL-DK franta-hg@171: * Copyright © 2014 František Kučera (frantovo.cz) franta-hg@171: * franta-hg@171: * This program is free software: you can redistribute it and/or modify franta-hg@171: * it under the terms of the GNU General Public License as published by franta-hg@171: * the Free Software Foundation, either version 3 of the License, or franta-hg@171: * (at your option) any later version. franta-hg@171: * franta-hg@171: * This program is distributed in the hope that it will be useful, franta-hg@171: * but WITHOUT ANY WARRANTY; without even the implied warranty of franta-hg@171: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the franta-hg@171: * GNU General Public License for more details. franta-hg@171: * franta-hg@171: * You should have received a copy of the GNU General Public License franta-hg@171: * along with this program. If not, see . franta-hg@171: */ franta-hg@171: package info.globalcode.jdbc.loopback; franta-hg@171: franta-hg@171: import java.io.InputStream; franta-hg@171: import java.io.Reader; franta-hg@171: import java.math.BigDecimal; franta-hg@171: import java.net.URL; franta-hg@171: import java.sql.Array; franta-hg@171: import java.sql.Blob; franta-hg@171: import java.sql.Clob; franta-hg@171: import java.sql.Date; franta-hg@171: import java.sql.NClob; franta-hg@171: import java.sql.Ref; franta-hg@171: import java.sql.RowId; franta-hg@171: import java.sql.SQLException; franta-hg@171: import java.sql.SQLWarning; franta-hg@171: import java.sql.SQLXML; franta-hg@171: import java.sql.Statement; franta-hg@171: import java.sql.Time; franta-hg@171: import java.sql.Timestamp; franta-hg@171: import java.util.Calendar; franta-hg@171: import java.util.Map; franta-hg@171: franta-hg@171: /** franta-hg@171: * franta-hg@171: * @author Ing. František Kučera (frantovo.cz) franta-hg@171: */ franta-hg@171: public abstract class AbstractResultSet implements java.sql.ResultSet { franta-hg@171: franta-hg@171: @Override franta-hg@171: public boolean next() throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void close() throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public boolean wasNull() throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public String getString(int columnIndex) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public boolean getBoolean(int columnIndex) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public byte getByte(int columnIndex) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public short getShort(int columnIndex) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public int getInt(int columnIndex) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public long getLong(int columnIndex) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public float getFloat(int columnIndex) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public double getDouble(int columnIndex) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public BigDecimal getBigDecimal(int columnIndex, int scale) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public byte[] getBytes(int columnIndex) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public Date getDate(int columnIndex) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public Time getTime(int columnIndex) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public Timestamp getTimestamp(int columnIndex) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public InputStream getAsciiStream(int columnIndex) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public InputStream getUnicodeStream(int columnIndex) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public InputStream getBinaryStream(int columnIndex) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public String getString(String columnLabel) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public boolean getBoolean(String columnLabel) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public byte getByte(String columnLabel) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public short getShort(String columnLabel) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public int getInt(String columnLabel) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public long getLong(String columnLabel) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public float getFloat(String columnLabel) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public double getDouble(String columnLabel) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public BigDecimal getBigDecimal(String columnLabel, int scale) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public byte[] getBytes(String columnLabel) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public Date getDate(String columnLabel) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public Time getTime(String columnLabel) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public Timestamp getTimestamp(String columnLabel) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public InputStream getAsciiStream(String columnLabel) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public InputStream getUnicodeStream(String columnLabel) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public InputStream getBinaryStream(String columnLabel) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public SQLWarning getWarnings() throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void clearWarnings() throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public String getCursorName() throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public java.sql.ResultSetMetaData getMetaData() throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public Object getObject(int columnIndex) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public Object getObject(String columnLabel) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public int findColumn(String columnLabel) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public Reader getCharacterStream(int columnIndex) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public Reader getCharacterStream(String columnLabel) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public BigDecimal getBigDecimal(int columnIndex) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public BigDecimal getBigDecimal(String columnLabel) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public boolean isBeforeFirst() throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public boolean isAfterLast() throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public boolean isFirst() throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public boolean isLast() throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void beforeFirst() throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void afterLast() throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public boolean first() throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public boolean last() throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public int getRow() throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public boolean absolute(int row) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public boolean relative(int rows) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public boolean previous() throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void setFetchDirection(int direction) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public int getFetchDirection() throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void setFetchSize(int rows) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public int getFetchSize() throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public int getType() throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public int getConcurrency() throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public boolean rowUpdated() throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public boolean rowInserted() throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public boolean rowDeleted() throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateNull(int columnIndex) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateBoolean(int columnIndex, boolean x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateByte(int columnIndex, byte x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateShort(int columnIndex, short x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateInt(int columnIndex, int x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateLong(int columnIndex, long x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateFloat(int columnIndex, float x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateDouble(int columnIndex, double x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateBigDecimal(int columnIndex, BigDecimal x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateString(int columnIndex, String x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateBytes(int columnIndex, byte[] x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateDate(int columnIndex, Date x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateTime(int columnIndex, Time x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateTimestamp(int columnIndex, Timestamp x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateAsciiStream(int columnIndex, InputStream x, int length) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateBinaryStream(int columnIndex, InputStream x, int length) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateCharacterStream(int columnIndex, Reader x, int length) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateObject(int columnIndex, Object x, int scaleOrLength) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateObject(int columnIndex, Object x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateNull(String columnLabel) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateBoolean(String columnLabel, boolean x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateByte(String columnLabel, byte x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateShort(String columnLabel, short x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateInt(String columnLabel, int x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateLong(String columnLabel, long x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateFloat(String columnLabel, float x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateDouble(String columnLabel, double x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateBigDecimal(String columnLabel, BigDecimal x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateString(String columnLabel, String x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateBytes(String columnLabel, byte[] x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateDate(String columnLabel, Date x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateTime(String columnLabel, Time x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateTimestamp(String columnLabel, Timestamp x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateAsciiStream(String columnLabel, InputStream x, int length) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateBinaryStream(String columnLabel, InputStream x, int length) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateCharacterStream(String columnLabel, Reader reader, int length) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateObject(String columnLabel, Object x, int scaleOrLength) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateObject(String columnLabel, Object x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void insertRow() throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateRow() throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void deleteRow() throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void refreshRow() throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void cancelRowUpdates() throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void moveToInsertRow() throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void moveToCurrentRow() throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public Statement getStatement() throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public Object getObject(int columnIndex, Map> map) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public Ref getRef(int columnIndex) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public Blob getBlob(int columnIndex) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public Clob getClob(int columnIndex) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public Array getArray(int columnIndex) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public Object getObject(String columnLabel, Map> map) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public Ref getRef(String columnLabel) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public Blob getBlob(String columnLabel) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public Clob getClob(String columnLabel) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public Array getArray(String columnLabel) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public Date getDate(int columnIndex, Calendar cal) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public Date getDate(String columnLabel, Calendar cal) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public Time getTime(int columnIndex, Calendar cal) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public Time getTime(String columnLabel, Calendar cal) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public Timestamp getTimestamp(String columnLabel, Calendar cal) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public URL getURL(int columnIndex) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public URL getURL(String columnLabel) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateRef(int columnIndex, Ref x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateRef(String columnLabel, Ref x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateBlob(int columnIndex, Blob x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateBlob(String columnLabel, Blob x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateClob(int columnIndex, Clob x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateClob(String columnLabel, Clob x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateArray(int columnIndex, Array x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateArray(String columnLabel, Array x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public RowId getRowId(int columnIndex) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public RowId getRowId(String columnLabel) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateRowId(int columnIndex, RowId x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateRowId(String columnLabel, RowId x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public int getHoldability() throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public boolean isClosed() throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateNString(int columnIndex, String nString) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateNString(String columnLabel, String nString) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateNClob(int columnIndex, NClob nClob) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateNClob(String columnLabel, NClob nClob) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public NClob getNClob(int columnIndex) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public NClob getNClob(String columnLabel) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public SQLXML getSQLXML(int columnIndex) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public SQLXML getSQLXML(String columnLabel) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateSQLXML(int columnIndex, SQLXML xmlObject) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateSQLXML(String columnLabel, SQLXML xmlObject) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public String getNString(int columnIndex) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public String getNString(String columnLabel) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public Reader getNCharacterStream(int columnIndex) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public Reader getNCharacterStream(String columnLabel) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateNCharacterStream(int columnIndex, Reader x, long length) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateNCharacterStream(String columnLabel, Reader reader, long length) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateAsciiStream(int columnIndex, InputStream x, long length) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateBinaryStream(int columnIndex, InputStream x, long length) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateCharacterStream(int columnIndex, Reader x, long length) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateAsciiStream(String columnLabel, InputStream x, long length) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateBinaryStream(String columnLabel, InputStream x, long length) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateCharacterStream(String columnLabel, Reader reader, long length) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateBlob(int columnIndex, InputStream inputStream, long length) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateBlob(String columnLabel, InputStream inputStream, long length) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateClob(int columnIndex, Reader reader, long length) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateClob(String columnLabel, Reader reader, long length) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateNClob(int columnIndex, Reader reader, long length) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateNClob(String columnLabel, Reader reader, long length) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateNCharacterStream(int columnIndex, Reader x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateNCharacterStream(String columnLabel, Reader reader) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateAsciiStream(int columnIndex, InputStream x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateBinaryStream(int columnIndex, InputStream x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateCharacterStream(int columnIndex, Reader x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateAsciiStream(String columnLabel, InputStream x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateBinaryStream(String columnLabel, InputStream x) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateCharacterStream(String columnLabel, Reader reader) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateBlob(int columnIndex, InputStream inputStream) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateBlob(String columnLabel, InputStream inputStream) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateClob(int columnIndex, Reader reader) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateClob(String columnLabel, Reader reader) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateNClob(int columnIndex, Reader reader) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public void updateNClob(String columnLabel, Reader reader) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public T getObject(int columnIndex, Class type) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public T getObject(String columnLabel, Class type) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public T unwrap(Class iface) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: franta-hg@171: @Override franta-hg@171: public boolean isWrapperFor(Class iface) throws SQLException { franta-hg@171: throw new SQLException("Not supported yet."); franta-hg@171: } franta-hg@171: }