com.dream.mate.share.connection.AbstractConnection Maven / Gradle / Ivy
The newest version!
package com.dream.mate.share.connection;
import java.sql.*;
import java.util.Map;
import java.util.Properties;
import java.util.concurrent.Executor;
public abstract class AbstractConnection implements Connection {
@Override
public Statement createStatement() throws SQLException {
return getConnection().createStatement();
}
@Override
public PreparedStatement prepareStatement(String sql) throws SQLException {
return getConnection().prepareStatement(sql);
}
@Override
public CallableStatement prepareCall(String sql) throws SQLException {
return getConnection().prepareCall(sql);
}
@Override
public String nativeSQL(String sql) throws SQLException {
throw new SQLException("nativeSQL");
}
@Override
public String getCatalog() throws SQLException {
throw new SQLException("getCatalog");
}
@Override
public void setCatalog(String catalog) throws SQLException {
throw new SQLException("setCatalog");
}
@Override
public SQLWarning getWarnings() throws SQLException {
throw new SQLException("getWarnings");
}
@Override
public void clearWarnings() throws SQLException {
throw new SQLException("clearWarnings");
}
@Override
public Statement createStatement(int resultSetType, int resultSetConcurrency) throws SQLException {
return getConnection().createStatement(resultSetType, resultSetConcurrency);
}
@Override
public PreparedStatement prepareStatement(String sql, int resultSetType, int resultSetConcurrency) throws SQLException {
return getConnection().prepareStatement(sql, resultSetType, resultSetConcurrency);
}
@Override
public CallableStatement prepareCall(String sql, int resultSetType, int resultSetConcurrency) throws SQLException {
return getConnection().prepareCall(sql, resultSetType, resultSetConcurrency);
}
@Override
public Map> getTypeMap() throws SQLException {
throw new SQLException("getTypeMap");
}
@Override
public void setTypeMap(Map> map) throws SQLException {
throw new SQLException("setTypeMap");
}
@Override
public int getHoldability() throws SQLException {
throw new SQLException("getHoldability");
}
@Override
public void setHoldability(int holdability) throws SQLException {
throw new SQLException("setHoldability");
}
@Override
public Savepoint setSavepoint() throws SQLException {
throw new SQLException("setSavepoint");
}
@Override
public Savepoint setSavepoint(String name) throws SQLException {
throw new SQLException("setSavepoint");
}
@Override
public void rollback(Savepoint savepoint) throws SQLException {
throw new SQLException("rollback");
}
@Override
public void releaseSavepoint(Savepoint savepoint) throws SQLException {
throw new SQLException("releaseSavepoint");
}
@Override
public Statement createStatement(int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws SQLException {
return getConnection().createStatement(resultSetType, resultSetConcurrency, resultSetHoldability);
}
@Override
public PreparedStatement prepareStatement(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws SQLException {
return getConnection().prepareStatement(sql, resultSetType, resultSetConcurrency, resultSetHoldability);
}
@Override
public CallableStatement prepareCall(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws SQLException {
return getConnection().prepareCall(sql, resultSetType, resultSetConcurrency, resultSetHoldability);
}
@Override
public PreparedStatement prepareStatement(String sql, int autoGeneratedKeys) throws SQLException {
return getConnection().prepareStatement(sql, autoGeneratedKeys);
}
@Override
public PreparedStatement prepareStatement(String sql, int[] columnIndexes) throws SQLException {
return getConnection().prepareStatement(sql, columnIndexes);
}
@Override
public PreparedStatement prepareStatement(String sql, String[] columnNames) throws SQLException {
return getConnection().prepareStatement(sql, columnNames);
}
@Override
public Clob createClob() throws SQLException {
throw new SQLException("createClob");
}
@Override
public Blob createBlob() throws SQLException {
throw new SQLException("createBlob");
}
@Override
public NClob createNClob() throws SQLException {
throw new SQLException("createNClob");
}
@Override
public SQLXML createSQLXML() throws SQLException {
throw new SQLException("createSQLXML");
}
@Override
public boolean isValid(int timeout) throws SQLException {
throw new SQLException("isValid");
}
@Override
public void setClientInfo(String name, String value) throws SQLClientInfoException {
throw new UnsupportedOperationException("setClientInfo");
}
@Override
public String getClientInfo(String name) throws SQLException {
throw new SQLException("getClientInfo");
}
@Override
public Properties getClientInfo() throws SQLException {
throw new SQLException("getClientInfo");
}
@Override
public void setClientInfo(Properties properties) throws SQLClientInfoException {
throw new UnsupportedOperationException("setClientInfo");
}
@Override
public Array createArrayOf(String typeName, Object[] elements) throws SQLException {
throw new SQLException("createArrayOf");
}
@Override
public Struct createStruct(String typeName, Object[] attributes) throws SQLException {
throw new SQLException("createStruct");
}
@Override
public String getSchema() throws SQLException {
throw new SQLException("getSchema");
}
@Override
public void setSchema(String schema) throws SQLException {
throw new SQLException("setSchema");
}
@Override
public void abort(Executor executor) throws SQLException {
throw new SQLException("abort");
}
@Override
public void setNetworkTimeout(Executor executor, int milliseconds) throws SQLException {
throw new SQLException("setNetworkTimeout");
}
@Override
public int getNetworkTimeout() throws SQLException {
throw new SQLException("getNetworkTimeout");
}
@Override
public T unwrap(Class iface) throws SQLException {
return (T) this;
}
@Override
public boolean isWrapperFor(Class> iface) throws SQLException {
return iface.isInstance(this);
}
protected abstract Connection getConnection() throws SQLException;
}