org.xbib.io.pool.jdbc.ProxyPreparedStatement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of connection-pool-jdbc Show documentation
Show all versions of connection-pool-jdbc Show documentation
JDBC connection pooling for Java 11+
The newest version!
package org.xbib.io.pool.jdbc;
import java.io.InputStream;
import java.io.Reader;
import java.math.BigDecimal;
import java.net.URL;
import java.sql.Array;
import java.sql.Blob;
import java.sql.Clob;
import java.sql.Date;
import java.sql.NClob;
import java.sql.ParameterMetaData;
import java.sql.PreparedStatement;
import java.sql.Ref;
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.RowId;
import java.sql.SQLException;
import java.sql.SQLXML;
import java.sql.Time;
import java.sql.Timestamp;
import java.util.Calendar;
/**
* This is the proxy class for java.sql.PreparedStatement.
*/
public class ProxyPreparedStatement extends ProxyStatement implements PreparedStatement {
public ProxyPreparedStatement(ProxyConnection connection, PreparedStatement statement) {
super(connection, statement);
}
/**
* {@inheritDoc}
*/
@Override
public boolean execute() throws SQLException {
connection.markCommitStateDirty();
return ((PreparedStatement) delegate).execute();
}
@Override
public void addBatch() throws SQLException {
((PreparedStatement) delegate).addBatch();
}
@Override
public void setCharacterStream(int parameterIndex, Reader reader, int length) throws SQLException {
((PreparedStatement) delegate).setCharacterStream(parameterIndex, reader, length);
}
@Override
public void setRef(int parameterIndex, Ref x) throws SQLException {
((PreparedStatement) delegate).setRef(parameterIndex, x);
}
@Override
public void setBlob(int parameterIndex, Blob x) throws SQLException {
((PreparedStatement) delegate).setBlob(parameterIndex, x);
}
@Override
public void setClob(int parameterIndex, Clob x) throws SQLException {
((PreparedStatement) delegate).setClob(parameterIndex, x);
}
@Override
public void setArray(int parameterIndex, Array x) throws SQLException {
((PreparedStatement) delegate).setArray(parameterIndex, x);
}
@Override
public ResultSetMetaData getMetaData() throws SQLException {
return ((PreparedStatement) delegate).getMetaData();
}
@Override
public void setDate(int parameterIndex, Date x, Calendar cal) throws SQLException {
((PreparedStatement) delegate).setDate(parameterIndex, x);
}
@Override
public void setTime(int parameterIndex, Time x, Calendar cal) throws SQLException {
((PreparedStatement) delegate).setTime(parameterIndex, x);
}
@Override
public void setTimestamp(int parameterIndex, Timestamp x, Calendar cal) throws SQLException {
((PreparedStatement) delegate).setTimestamp(parameterIndex, x, cal);
}
@Override
public void setNull(int parameterIndex, int sqlType, String typeName) throws SQLException {
((PreparedStatement) delegate).setNull(parameterIndex, sqlType, typeName);
}
@Override
public void setURL(int parameterIndex, URL x) throws SQLException {
((PreparedStatement) delegate).setURL(parameterIndex, x);
}
@Override
public ParameterMetaData getParameterMetaData() throws SQLException {
return ((PreparedStatement) delegate).getParameterMetaData();
}
@Override
public void setRowId(int parameterIndex, RowId x) throws SQLException {
((PreparedStatement) delegate).setRowId(parameterIndex, x);
}
@Override
public void setNString(int parameterIndex, String value) throws SQLException {
((PreparedStatement) delegate).setNString(parameterIndex, value);
}
@Override
public void setNCharacterStream(int parameterIndex, Reader value, long length) throws SQLException {
((PreparedStatement) delegate).setNCharacterStream(parameterIndex, value, length);
}
@Override
public void setNClob(int parameterIndex, NClob value) throws SQLException {
((PreparedStatement) delegate).setNClob(parameterIndex, value);
}
@Override
public void setClob(int parameterIndex, Reader reader, long length) throws SQLException {
((PreparedStatement) delegate).setClob(parameterIndex, reader, length);
}
@Override
public void setBlob(int parameterIndex, InputStream inputStream, long length) throws SQLException {
((PreparedStatement) delegate).setBlob(parameterIndex, inputStream, length);
}
@Override
public void setNClob(int parameterIndex, Reader reader, long length) throws SQLException {
((PreparedStatement) delegate).setNClob(parameterIndex, reader, length);
}
@Override
public void setSQLXML(int parameterIndex, SQLXML xmlObject) throws SQLException {
((PreparedStatement) delegate).setSQLXML(parameterIndex, xmlObject);
}
@Override
public void setObject(int parameterIndex, Object x, int targetSqlType, int scaleOrLength) throws SQLException {
((PreparedStatement) delegate).setObject(parameterIndex, x, targetSqlType, scaleOrLength);
}
@Override
public void setAsciiStream(int parameterIndex, InputStream x, long length) throws SQLException {
((PreparedStatement) delegate).setAsciiStream(parameterIndex, x, length);
}
@Override
public void setBinaryStream(int parameterIndex, InputStream x, long length) throws SQLException {
((PreparedStatement) delegate).setBinaryStream(parameterIndex, x, length);
}
@Override
public void setCharacterStream(int parameterIndex, Reader reader, long length) throws SQLException {
((PreparedStatement) delegate).setCharacterStream(parameterIndex, reader, length);
}
@Override
public void setAsciiStream(int parameterIndex, InputStream x) throws SQLException {
((PreparedStatement) delegate).setAsciiStream(parameterIndex, x);
}
@Override
public void setBinaryStream(int parameterIndex, InputStream x) throws SQLException {
((PreparedStatement) delegate).setBinaryStream(parameterIndex, x);
}
@Override
public void setCharacterStream(int parameterIndex, Reader reader) throws SQLException {
((PreparedStatement) delegate).setCharacterStream(parameterIndex, reader);
}
@Override
public void setNCharacterStream(int parameterIndex, Reader value) throws SQLException {
((PreparedStatement) delegate).setNCharacterStream(parameterIndex, value);
}
@Override
public void setClob(int parameterIndex, Reader reader) throws SQLException {
((PreparedStatement) delegate).setClob(parameterIndex, reader);
}
@Override
public void setBlob(int parameterIndex, InputStream inputStream) throws SQLException {
((PreparedStatement) delegate).setBlob(parameterIndex, inputStream);
}
@Override
public void setNClob(int parameterIndex, Reader reader) throws SQLException {
((PreparedStatement) delegate).setNClob(parameterIndex, reader);
}
/**
* {@inheritDoc}
*/
@Override
public ResultSet executeQuery() throws SQLException {
connection.markCommitStateDirty();
ResultSet resultSet = ((PreparedStatement) getDelegate()).executeQuery();
return ProxyFactory.getProxyResultSet(connection, this, resultSet);
}
/**
* {@inheritDoc}
*/
@Override
public int executeUpdate() throws SQLException {
connection.markCommitStateDirty();
return ((PreparedStatement) getDelegate()).executeUpdate();
}
@Override
public void setNull(int parameterIndex, int sqlType) throws SQLException {
((PreparedStatement) delegate).setNull(parameterIndex, sqlType);
}
@Override
public void setBoolean(int parameterIndex, boolean x) throws SQLException {
((PreparedStatement) delegate).setBoolean(parameterIndex, x);
}
@Override
public void setByte(int parameterIndex, byte x) throws SQLException {
((PreparedStatement) delegate).setByte(parameterIndex, x);
}
@Override
public void setShort(int parameterIndex, short x) throws SQLException {
((PreparedStatement) delegate).setShort(parameterIndex, x);
}
@Override
public void setInt(int parameterIndex, int x) throws SQLException {
((PreparedStatement) delegate).setInt(parameterIndex, x);
}
@Override
public void setLong(int parameterIndex, long x) throws SQLException {
((PreparedStatement) delegate).setLong(parameterIndex, x);
}
@Override
public void setFloat(int parameterIndex, float x) throws SQLException {
((PreparedStatement) delegate).setFloat(parameterIndex, x);
}
@Override
public void setDouble(int parameterIndex, double x) throws SQLException {
((PreparedStatement) delegate).setDouble(parameterIndex, x);
}
@Override
public void setBigDecimal(int parameterIndex, BigDecimal x) throws SQLException {
((PreparedStatement) delegate).setBigDecimal(parameterIndex, x);
}
@Override
public void setString(int parameterIndex, String x) throws SQLException {
((PreparedStatement) delegate).setString(parameterIndex, x);
}
@Override
public void setBytes(int parameterIndex, byte[] x) throws SQLException {
((PreparedStatement) delegate).setBytes(parameterIndex, x);
}
@Override
public void setDate(int parameterIndex, Date x) throws SQLException {
((PreparedStatement) delegate).setDate(parameterIndex, x);
}
@Override
public void setTime(int parameterIndex, Time x) throws SQLException {
((PreparedStatement) delegate).setTime(parameterIndex, x);
}
@Override
public void setTimestamp(int parameterIndex, Timestamp x) throws SQLException {
((PreparedStatement) delegate).setTimestamp(parameterIndex, x);
}
@Override
public void setAsciiStream(int parameterIndex, InputStream x, int length) throws SQLException {
((PreparedStatement) delegate).setAsciiStream(parameterIndex, x, length);
}
@Override
public void setUnicodeStream(int parameterIndex, InputStream x, int length) throws SQLException {
((PreparedStatement) delegate).setUnicodeStream(parameterIndex, x, length);
}
@Override
public void setBinaryStream(int parameterIndex, InputStream x, int length) throws SQLException {
((PreparedStatement) delegate).setBinaryStream(parameterIndex, x, length);
}
@Override
public void clearParameters() throws SQLException {
((PreparedStatement) delegate).clearParameters();
}
@Override
public void setObject(int parameterIndex, Object x, int targetSqlType) throws SQLException {
((PreparedStatement) delegate).setObject(parameterIndex, x, targetSqlType);
}
@Override
public void setObject(int parameterIndex, Object x) throws SQLException {
((PreparedStatement) delegate).setObject(parameterIndex, x);
}
/**
* {@inheritDoc}
*/
@Override
public long executeLargeUpdate() throws SQLException {
connection.markCommitStateDirty();
return ((PreparedStatement) getDelegate()).executeLargeUpdate();
}
}