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.SQLException; 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 AbstractResultSetMetaData implements java.sql.ResultSetMetaData { franta-hg@171: franta-hg@171: @Override franta-hg@171: public int getColumnCount() 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 isAutoIncrement(int column) 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 isCaseSensitive(int column) 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 isSearchable(int column) 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 isCurrency(int column) 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 isNullable(int column) 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 isSigned(int column) 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 getColumnDisplaySize(int column) 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 getColumnLabel(int column) 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 getColumnName(int column) 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 getSchemaName(int column) 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 getPrecision(int column) 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 getScale(int column) 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 getTableName(int column) 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 getCatalogName(int column) 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 getColumnType(int column) 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 getColumnTypeName(int column) 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 isReadOnly(int column) 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 isWritable(int column) 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 isDefinitelyWritable(int column) 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 getColumnClassName(int column) 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: }