com.github.housepower.jdbc.wrapper.SQLResultSetMetaData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clickhouse-native-jdbc Show documentation
Show all versions of clickhouse-native-jdbc Show documentation
ClickHouse Native Protocol JDBC implementation
package com.github.housepower.jdbc.wrapper;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.sql.SQLFeatureNotSupportedException;
public abstract class SQLResultSetMetaData implements ResultSetMetaData {
@Override
public int getColumnCount() throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public boolean isAutoIncrement(int column) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public boolean isCaseSensitive(int column) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public boolean isSearchable(int column) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public boolean isCurrency(int column) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public int isNullable(int column) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public boolean isSigned(int column) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public int getColumnDisplaySize(int column) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public String getColumnLabel(int column) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public String getColumnName(int column) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public String getSchemaName(int column) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public int getPrecision(int column) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public int getScale(int column) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public String getTableName(int column) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public String getCatalogName(int column) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public int getColumnType(int column) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public String getColumnTypeName(int column) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public boolean isReadOnly(int column) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public boolean isWritable(int column) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public boolean isDefinitelyWritable(int column) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public String getColumnClassName(int column) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public T unwrap(Class iface) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
@Override
public boolean isWrapperFor(Class> iface) throws SQLException {
throw new SQLFeatureNotSupportedException();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy