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.sql.Connection; franta-hg@171: import java.sql.SQLException; franta-hg@171: import java.sql.SQLWarning; 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 AbstractStatement implements java.sql.Statement { franta-hg@171: franta-hg@171: @Override franta-hg@171: public ResultSet executeQuery(String sql) 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 executeUpdate(String sql) 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 int getMaxFieldSize() 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 setMaxFieldSize(int max) 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 getMaxRows() 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 setMaxRows(int max) 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 setEscapeProcessing(boolean enable) 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 getQueryTimeout() 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 setQueryTimeout(int seconds) 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 cancel() 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 void setCursorName(String name) 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 execute(String sql) 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.ResultSet getResultSet() 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 getUpdateCount() 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 getMoreResults() 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 getResultSetConcurrency() 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 getResultSetType() 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 addBatch(String sql) 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 clearBatch() 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[] executeBatch() 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 Connection getConnection() 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 getMoreResults(int current) 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 ResultSet getGeneratedKeys() 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 executeUpdate(String sql, int autoGeneratedKeys) 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 executeUpdate(String sql, int[] columnIndexes) 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 executeUpdate(String sql, String[] columnNames) 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 execute(String sql, int autoGeneratedKeys) 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 execute(String sql, int[] columnIndexes) 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 execute(String sql, String[] columnNames) 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 getResultSetHoldability() 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 setPoolable(boolean poolable) 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 isPoolable() 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 closeOnCompletion() 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 isCloseOnCompletion() 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: franta-hg@171: }