com.ibatis.common.jdbc.SimpleCallableStatement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jbatis Show documentation
Show all versions of jbatis Show documentation
The jBATIS persistence framework will help you to significantly reduce the amount of Java code that you normally need to access a relational database. iBATIS simply maps JavaBeans to SQL statements using a very simple XML descriptor.
The newest version!
package com.ibatis.common.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.CallableStatement;
import java.sql.Clob;
import java.sql.Date;
import java.sql.NClob;
import java.sql.Ref;
import java.sql.RowId;
import java.sql.SQLException;
import java.sql.SQLXML;
import java.sql.Time;
import java.sql.Timestamp;
import java.util.Calendar;
import java.util.Map;
public class SimpleCallableStatement extends SimplePreparedStatement implements CallableStatement {
public SimpleCallableStatement(SimplePooledConnection conn, CallableStatement prepareCall, String sql) {
super(conn, prepareCall, sql);
}
@Override
public void registerOutParameter(int parameterIndex, int sqlType) throws SQLException {
cstat().registerOutParameter(parameterIndex, sqlType);
}
@Override
public void registerOutParameter(int parameterIndex, int sqlType, int scale) throws SQLException {
cstat().registerOutParameter(parameterIndex, sqlType, scale);
}
@Override
public boolean wasNull() throws SQLException {
return cstat().wasNull();
}
@Override
public String getString(int parameterIndex) throws SQLException {
return cstat().getString(parameterIndex);
}
@Override
public boolean getBoolean(int parameterIndex) throws SQLException {
return cstat().getBoolean(parameterIndex);
}
@Override
public byte getByte(int parameterIndex) throws SQLException {
return cstat().getByte(parameterIndex);
}
@Override
public short getShort(int parameterIndex) throws SQLException {
return cstat().getShort(parameterIndex);
}
@Override
public int getInt(int parameterIndex) throws SQLException {
return cstat().getInt(parameterIndex);
}
@Override
public long getLong(int parameterIndex) throws SQLException {
return cstat().getLong(parameterIndex);
}
@Override
public float getFloat(int parameterIndex) throws SQLException {
return cstat().getFloat(parameterIndex);
}
@Override
public double getDouble(int parameterIndex) throws SQLException {
return cstat().getDouble(parameterIndex);
}
@Override
@Deprecated
public BigDecimal getBigDecimal(int parameterIndex, int scale) throws SQLException {
return cstat().getBigDecimal(parameterIndex, scale);
}
@Override
public byte[] getBytes(int parameterIndex) throws SQLException {
return cstat().getBytes(parameterIndex);
}
@Override
public Date getDate(int parameterIndex) throws SQLException {
return cstat().getDate(parameterIndex);
}
@Override
public Time getTime(int parameterIndex) throws SQLException {
return cstat().getTime(parameterIndex);
}
@Override
public Timestamp getTimestamp(int parameterIndex) throws SQLException {
return cstat().getTimestamp(parameterIndex);
}
@Override
public Object getObject(int parameterIndex) throws SQLException {
return cstat().getObject(parameterIndex);
}
@Override
public BigDecimal getBigDecimal(int parameterIndex) throws SQLException {
return cstat().getBigDecimal(parameterIndex);
}
@Override
public Object getObject(int parameterIndex, Map> map) throws SQLException {
return cstat().getObject(parameterIndex, map);
}
@Override
public Ref getRef(int parameterIndex) throws SQLException {
return cstat().getRef(parameterIndex);
}
@Override
public Blob getBlob(int parameterIndex) throws SQLException {
return cstat().getBlob(parameterIndex);
}
@Override
public Clob getClob(int parameterIndex) throws SQLException {
return cstat().getClob(parameterIndex);
}
@Override
public Array getArray(int parameterIndex) throws SQLException {
return cstat().getArray(parameterIndex);
}
@Override
public Date getDate(int parameterIndex, Calendar cal) throws SQLException {
return cstat().getDate(parameterIndex, cal);
}
@Override
public Time getTime(int parameterIndex, Calendar cal) throws SQLException {
return cstat().getTime(parameterIndex, cal);
}
@Override
public Timestamp getTimestamp(int parameterIndex, Calendar cal) throws SQLException {
return cstat().getTimestamp(parameterIndex, cal);
}
@Override
public void registerOutParameter(int parameterIndex, int sqlType, String typeName) throws SQLException {
cstat().registerOutParameter(parameterIndex, sqlType, typeName);
}
@Override
public void registerOutParameter(String parameterName, int sqlType) throws SQLException {
cstat().registerOutParameter(parameterName, sqlType);
}
@Override
public void registerOutParameter(String parameterName, int sqlType, int scale) throws SQLException {
cstat().registerOutParameter(parameterName, sqlType, scale);
}
@Override
public void registerOutParameter(String parameterName, int sqlType, String typeName) throws SQLException {
cstat().registerOutParameter(parameterName, sqlType, typeName);
}
@Override
public URL getURL(int parameterIndex) throws SQLException {
return cstat().getURL(parameterIndex);
}
@Override
public void setURL(String parameterName, URL val) throws SQLException {
addArg(parameterName, val);
cstat().setURL(parameterName, val);
}
@Override
public void setNull(String parameterName, int sqlType) throws SQLException {
addArg(parameterName, null);
cstat().setNull(parameterName, sqlType);
}
@Override
public void setBoolean(String parameterName, boolean x) throws SQLException {
cstat().setBoolean(parameterName, x);
}
@Override
public void setByte(String parameterName, byte x) throws SQLException {
cstat().setByte(parameterName, x);
}
@Override
public void setShort(String parameterName, short x) throws SQLException {
addArg(parameterName, x);
cstat().setShort(parameterName, x);
}
@Override
public void setInt(String parameterName, int x) throws SQLException {
addArg(parameterName, x);
cstat().setInt(parameterName, x);
}
@Override
public void setLong(String parameterName, long x) throws SQLException {
addArg(parameterName, x);
cstat().setLong(parameterName, x);
}
@Override
public void setFloat(String parameterName, float x) throws SQLException {
addArg(parameterName, x);
cstat().setFloat(parameterName, x);
}
@Override
public void setDouble(String parameterName, double x) throws SQLException {
addArg(parameterName, x);
cstat().setDouble(parameterName, x);
}
@Override
public void setBigDecimal(String parameterName, BigDecimal x) throws SQLException {
addArg(parameterName, x);
cstat().setBigDecimal(parameterName, x);
}
@Override
public void setString(String parameterName, String x) throws SQLException {
addArg(parameterName, x);
cstat().setString(parameterName, x);
}
@Override
public void setBytes(String parameterName, byte[] x) throws SQLException {
addArg(parameterName, x);
cstat().setBytes(parameterName, x);
}
@Override
public void setDate(String parameterName, Date x) throws SQLException {
addArg(parameterName, x);
cstat().setDate(parameterName, x);
}
@Override
public void setTime(String parameterName, Time x) throws SQLException {
addArg(parameterName, x);
cstat().setTime(parameterName, x);
}
@Override
public void setTimestamp(String parameterName, Timestamp x) throws SQLException {
addArg(parameterName, x);
cstat().setTimestamp(parameterName, x);
}
@Override
public void setAsciiStream(String parameterName, InputStream x, int length) throws SQLException {
cstat().setAsciiStream(parameterName, x, length);
}
@Override
public void setBinaryStream(String parameterName, InputStream x, int length) throws SQLException {
cstat().setBinaryStream(parameterName, x, length);
}
@Override
public void setObject(String parameterName, Object x, int targetSqlType, int scale) throws SQLException {
addArg(parameterName, x);
cstat().setObject(parameterName, x, targetSqlType, scale);
}
@Override
public void setObject(String parameterName, Object x, int targetSqlType) throws SQLException {
addArg(parameterName, x);
cstat().setObject(parameterName, x, targetSqlType);
}
@Override
public void setObject(String parameterName, Object x) throws SQLException {
addArg(parameterName, x);
cstat().setObject(parameterName, x);
}
@Override
public void setCharacterStream(String parameterName, Reader reader, int length) throws SQLException {
cstat().setCharacterStream(parameterName, reader, length);
}
@Override
public void setDate(String parameterName, Date x, Calendar cal) throws SQLException {
addArg(parameterName, x);
cstat().setDate(parameterName, x, cal);
}
@Override
public void setTime(String parameterName, Time x, Calendar cal) throws SQLException {
addArg(parameterName, x);
cstat().setTime(parameterName, x, cal);
}
@Override
public void setTimestamp(String parameterName, Timestamp x, Calendar cal) throws SQLException {
addArg(parameterName, x);
cstat().setTimestamp(parameterName, x, cal);
}
@Override
public void setNull(String parameterName, int sqlType, String typeName) throws SQLException {
addArg(parameterName, null);
cstat().setNull(parameterName, sqlType, typeName);
}
@Override
public String getString(String parameterName) throws SQLException {
return cstat().getString(parameterName);
}
@Override
public boolean getBoolean(String parameterName) throws SQLException {
return cstat().getBoolean(parameterName);
}
@Override
public byte getByte(String parameterName) throws SQLException {
return cstat().getByte(parameterName);
}
@Override
public short getShort(String parameterName) throws SQLException {
return cstat().getShort(parameterName);
}
@Override
public int getInt(String parameterName) throws SQLException {
return cstat().getInt(parameterName);
}
@Override
public long getLong(String parameterName) throws SQLException {
return cstat().getLong(parameterName);
}
@Override
public float getFloat(String parameterName) throws SQLException {
return cstat().getFloat(parameterName);
}
@Override
public double getDouble(String parameterName) throws SQLException {
return cstat().getDouble(parameterName);
}
@Override
public byte[] getBytes(String parameterName) throws SQLException {
return cstat().getBytes(parameterName);
}
@Override
public Date getDate(String parameterName) throws SQLException {
return cstat().getDate(parameterName);
}
@Override
public Time getTime(String parameterName) throws SQLException {
return cstat().getTime(parameterName);
}
@Override
public Timestamp getTimestamp(String parameterName) throws SQLException {
return cstat().getTimestamp(parameterName);
}
@Override
public Object getObject(String parameterName) throws SQLException {
return cstat().getObject(parameterName);
}
@Override
public BigDecimal getBigDecimal(String parameterName) throws SQLException {
return cstat().getBigDecimal(parameterName);
}
@Override
public Object getObject(String parameterName, Map> map) throws SQLException {
return cstat().getObject(parameterName, map);
}
@Override
public Ref getRef(String parameterName) throws SQLException {
return cstat().getRef(parameterName);
}
@Override
public Blob getBlob(String parameterName) throws SQLException {
return cstat().getBlob(parameterName);
}
@Override
public Clob getClob(String parameterName) throws SQLException {
return cstat().getClob(parameterName);
}
@Override
public Array getArray(String parameterName) throws SQLException {
return cstat().getArray(parameterName);
}
@Override
public Date getDate(String parameterName, Calendar cal) throws SQLException {
return cstat().getDate(parameterName, cal);
}
@Override
public Time getTime(String parameterName, Calendar cal) throws SQLException {
return cstat().getTime(parameterName, cal);
}
@Override
public Timestamp getTimestamp(String parameterName, Calendar cal) throws SQLException {
return cstat().getTimestamp(parameterName, cal);
}
@Override
public URL getURL(String parameterName) throws SQLException {
return cstat().getURL(parameterName);
}
@Override
public RowId getRowId(int parameterIndex) throws SQLException {
return cstat().getRowId(parameterIndex);
}
@Override
public RowId getRowId(String parameterName) throws SQLException {
return cstat().getRowId(parameterName);
}
@Override
public void setRowId(String parameterName, RowId x) throws SQLException {
cstat().setRowId(parameterName, x);
}
@Override
public void setNString(String parameterName, String value) throws SQLException {
addArg(parameterName, value);
cstat().setNString(parameterName, value);
}
@Override
public void setNCharacterStream(String parameterName, Reader value, long length) throws SQLException {
cstat().setNCharacterStream(parameterName, value, length);
}
@Override
public void setNClob(String parameterName, NClob value) throws SQLException {
cstat().setNClob(parameterName, value);
}
@Override
public void setClob(String parameterName, Reader reader, long length) throws SQLException {
cstat().setClob(parameterName, reader, length);
}
@Override
public void setBlob(String parameterName, InputStream inputStream, long length) throws SQLException {
cstat().setBlob(parameterName, inputStream, length);
}
@Override
public void setNClob(String parameterName, Reader reader, long length) throws SQLException {
cstat().setNClob(parameterName, reader, length);
}
@Override
public NClob getNClob(int parameterIndex) throws SQLException {
return cstat().getNClob(parameterIndex);
}
@Override
public NClob getNClob(String parameterName) throws SQLException {
return cstat().getNClob(parameterName);
}
@Override
public void setSQLXML(String parameterName, SQLXML xmlObject) throws SQLException {
cstat().setSQLXML(parameterName, xmlObject);
}
@Override
public SQLXML getSQLXML(int parameterIndex) throws SQLException {
return cstat().getSQLXML(parameterIndex);
}
@Override
public SQLXML getSQLXML(String parameterName) throws SQLException {
return cstat().getSQLXML(parameterName);
}
@Override
public String getNString(int parameterIndex) throws SQLException {
return cstat().getNString(parameterIndex);
}
@Override
public String getNString(String parameterName) throws SQLException {
return cstat().getNString(parameterName);
}
@Override
public Reader getNCharacterStream(int parameterIndex) throws SQLException {
return cstat().getNCharacterStream(parameterIndex);
}
@Override
public Reader getNCharacterStream(String parameterName) throws SQLException {
return cstat().getNCharacterStream(parameterName);
}
@Override
public Reader getCharacterStream(int parameterIndex) throws SQLException {
return cstat().getCharacterStream(parameterIndex);
}
@Override
public Reader getCharacterStream(String parameterName) throws SQLException {
return cstat().getCharacterStream(parameterName);
}
@Override
public void setBlob(String parameterName, Blob x) throws SQLException {
cstat().setBlob(parameterName, x);
}
@Override
public void setClob(String parameterName, Clob x) throws SQLException {
cstat().setClob(parameterName, x);
}
@Override
public void setAsciiStream(String parameterName, InputStream x, long length) throws SQLException {
cstat().setAsciiStream(parameterName, x, length);
}
@Override
public void setBinaryStream(String parameterName, InputStream x, long length) throws SQLException {
cstat().setBinaryStream(parameterName, x, length);
}
@Override
public void setCharacterStream(String parameterName, Reader reader, long length) throws SQLException {
cstat().setCharacterStream(parameterName, reader, length);
}
@Override
public void setAsciiStream(String parameterName, InputStream x) throws SQLException {
cstat().setAsciiStream(parameterName, x);
}
@Override
public void setBinaryStream(String parameterName, InputStream x) throws SQLException {
cstat().setBinaryStream(parameterName, x);
}
@Override
public void setCharacterStream(String parameterName, Reader reader) throws SQLException {
cstat().setCharacterStream(parameterName, reader);
}
@Override
public void setNCharacterStream(String parameterName, Reader value) throws SQLException {
cstat().setNCharacterStream(parameterName, value);
}
@Override
public void setClob(String parameterName, Reader reader) throws SQLException {
cstat().setClob(parameterName, reader);
}
@Override
public void setBlob(String parameterName, InputStream inputStream) throws SQLException {
cstat().setBlob(parameterName, inputStream);
}
@Override
public void setNClob(String parameterName, Reader reader) throws SQLException {
cstat().setNClob(parameterName, reader);
}
@Override
public T getObject(int parameterIndex, Class type) throws SQLException {
return cstat().getObject(parameterIndex, type);
}
@Override
public T getObject(String parameterName, Class type) throws SQLException {
return cstat().getObject(parameterName, type);
}
}