net.sourceforge.jtds.jdbcx.proxy

Class CallableStatementProxy

Implemented Interfaces:
CallableStatement, PreparedStatement, Statement

public class CallableStatementProxy
extends PreparedStatementProxy
implements CallableStatement

This class would be better implemented as a java.lang.reflect.Proxy. However, this feature was not added until 1.3 and reflection performance was not improved until 1.4. Since the driver still needs to be compatible with 1.2 and 1.3 this class is used to delegate the calls to a callable statement with minimal overhead.
Version:
$Id: CallableStatementProxy.java,v 1.3 2004/08/24 17:45:08 bheineman Exp $

Field Summary

private JtdsCallableStatement
_callableStatement

Fields inherited from class net.sourceforge.jtds.jdbcx.proxy.PreparedStatementProxy

_preparedStatement

Fields inherited from class net.sourceforge.jtds.jdbcx.proxy.StatementProxy

_connection, _statement

Constructor Summary

CallableStatementProxy(ConnectionProxy connection, JtdsCallableStatement callableStatement)

Method Summary

Array
getArray(String parameterName)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
Array
getArray(int parameterIndex)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
BigDecimal
getBigDecimal(String parameterName)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
BigDecimal
getBigDecimal(int parameterIndex)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
BigDecimal
getBigDecimal(int parameterIndex, int scale)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
Blob
getBlob(String parameterName)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
Blob
getBlob(int parameterIndex)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
boolean
getBoolean(String parameterName)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
boolean
getBoolean(int parameterIndex)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
byte
getByte(String parameterName)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
byte
getByte(int parameterIndex)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
byte[]
getBytes(String parameterName)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
byte[]
getBytes(int parameterIndex)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
Clob
getClob(String parameterName)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
Clob
getClob(int parameterIndex)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
Date
getDate(String parameterName)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
Date
getDate(String parameterName, Calendar cal)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
Date
getDate(int parameterIndex)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
Date
getDate(int parameterIndex, Calendar cal)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
double
getDouble(String parameterName)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
double
getDouble(int parameterIndex)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
float
getFloat(String parameterName)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
float
getFloat(int parameterIndex)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
int
getInt(String parameterName)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
int
getInt(int parameterIndex)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
long
getLong(String parameterName)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
long
getLong(int parameterIndex)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
Object
getObject(String parameterName)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
Object
getObject(String parameterName, java.util.Map map)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
Object
getObject(int parameterIndex)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
Object
getObject(int parameterIndex, java.util.Map map)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
Ref
getRef(String parameterName)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
Ref
getRef(int parameterIndex)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
short
getShort(String parameterName)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
short
getShort(int parameterIndex)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
String
getString(String parameterName)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
String
getString(int parameterIndex)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
Time
getTime(String parameterName)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
Time
getTime(String parameterName, Calendar cal)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
Time
getTime(int parameterIndex)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
Time
getTime(int parameterIndex, Calendar cal)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
Timestamp
getTimestamp(String parameterName)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
Timestamp
getTimestamp(String parameterName, Calendar cal)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
Timestamp
getTimestamp(int parameterIndex)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
Timestamp
getTimestamp(int parameterIndex, Calendar cal)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
java.net.URL
getURL(String parameterName)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
java.net.URL
getURL(int parameterIndex)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
void
registerOutParameter(String parameterName, int sqlType)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
void
registerOutParameter(String parameterName, int sqlType, String typeName)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
void
registerOutParameter(String parameterName, int sqlType, int scale)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
void
registerOutParameter(int parameterIndex, int sqlType)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
void
registerOutParameter(int parameterIndex, int sqlType, String typeName)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
void
registerOutParameter(int parameterIndex, int sqlType, int scale)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
void
setAsciiStream(String parameterName, java.io.InputStream x, int length)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
void
setBigDecimal(String parameterName, BigDecimal x)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
void
setBinaryStream(String parameterName, java.io.InputStream x, int length)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
void
setBoolean(String parameterName, boolean x)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
void
setByte(String parameterName, byte x)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
void
setBytes(String parameterName, byte[] x)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
void
setCharacterStream(String parameterName, java.io.Reader x, int length)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
void
setDate(String parameterName, Date x)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
void
setDate(String parameterName, Date x, Calendar cal)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
void
setDouble(String parameterName, double x)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
void
setFloat(String parameterName, float x)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
void
setInt(String parameterName, int x)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
void
setLong(String parameterName, long x)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
void
setNull(String parameterName, int sqlType)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
void
setNull(String parameterName, int sqlType, String typeName)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
void
setObject(String parameterName, Object x)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
void
setObject(String parameterName, Object x, int targetSqlType)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
void
setObject(String parameterName, Object x, int targetSqlType, int scale)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
void
setShort(String parameterName, short x)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
void
setString(String parameterName, String x)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
void
setTime(String parameterName, Time x)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
void
setTime(String parameterName, Time x, Calendar cal)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
void
setTimestamp(String parameterName, Timestamp x)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
void
setTimestamp(String parameterName, Timestamp x, Calendar cal)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
void
setURL(String parameterName, java.net.URL val)
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.
boolean
wasNull()
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

Methods inherited from class net.sourceforge.jtds.jdbcx.proxy.PreparedStatementProxy

addBatch, clearParameters, execute, executeQuery, executeUpdate, getMetaData, getParameterMetaData, setArray, setAsciiStream, setBigDecimal, setBinaryStream, setBlob, setBoolean, setByte, setBytes, setCharacterStream, setClob, setDate, setDate, setDouble, setFloat, setInt, setLong, setNull, setNull, setObject, setObject, setObject, setRef, setShort, setString, setTime, setTime, setTimestamp, setTimestamp, setURL, setUnicodeStream

Methods inherited from class net.sourceforge.jtds.jdbcx.proxy.StatementProxy

addBatch, cancel, clearBatch, clearWarnings, close, execute, execute, execute, execute, executeBatch, executeQuery, executeUpdate, executeUpdate, executeUpdate, executeUpdate, getConnection, getFetchDirection, getFetchSize, getGeneratedKeys, getMaxFieldSize, getMaxRows, getMoreResults, getMoreResults, getQueryTimeout, getResultSet, getResultSetConcurrency, getResultSetHoldability, getResultSetType, getUpdateCount, getWarnings, processSQLException, setCursorName, setEscapeProcessing, setFetchDirection, setFetchSize, setMaxFieldSize, setMaxRows, setQueryTimeout, validateConnection

Field Details

_callableStatement

private JtdsCallableStatement _callableStatement

Constructor Details

CallableStatementProxy

(package private)  CallableStatementProxy(ConnectionProxy connection,
                                          JtdsCallableStatement callableStatement)

Method Details

getArray

public Array getArray(String parameterName)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getArray

public Array getArray(int parameterIndex)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getBigDecimal

public BigDecimal getBigDecimal(String parameterName)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getBigDecimal

public BigDecimal getBigDecimal(int parameterIndex)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getBigDecimal

public BigDecimal getBigDecimal(int parameterIndex,
                                int scale)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getBlob

public Blob getBlob(String parameterName)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getBlob

public Blob getBlob(int parameterIndex)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getBoolean

public boolean getBoolean(String parameterName)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getBoolean

public boolean getBoolean(int parameterIndex)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getByte

public byte getByte(String parameterName)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getByte

public byte getByte(int parameterIndex)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getBytes

public byte[] getBytes(String parameterName)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getBytes

public byte[] getBytes(int parameterIndex)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getClob

public Clob getClob(String parameterName)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getClob

public Clob getClob(int parameterIndex)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getDate

public Date getDate(String parameterName)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getDate

public Date getDate(String parameterName,
                    Calendar cal)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getDate

public Date getDate(int parameterIndex)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getDate

public Date getDate(int parameterIndex,
                    Calendar cal)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getDouble

public double getDouble(String parameterName)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getDouble

public double getDouble(int parameterIndex)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getFloat

public float getFloat(String parameterName)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getFloat

public float getFloat(int parameterIndex)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getInt

public int getInt(String parameterName)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getInt

public int getInt(int parameterIndex)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getLong

public long getLong(String parameterName)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getLong

public long getLong(int parameterIndex)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getObject

public Object getObject(String parameterName)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getObject

public Object getObject(String parameterName,
                        java.util.Map map)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getObject

public Object getObject(int parameterIndex)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getObject

public Object getObject(int parameterIndex,
                        java.util.Map map)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getRef

public Ref getRef(String parameterName)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getRef

public Ref getRef(int parameterIndex)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getShort

public short getShort(String parameterName)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getShort

public short getShort(int parameterIndex)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getString

public String getString(String parameterName)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getString

public String getString(int parameterIndex)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getTime

public Time getTime(String parameterName)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getTime

public Time getTime(String parameterName,
                    Calendar cal)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getTime

public Time getTime(int parameterIndex)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getTime

public Time getTime(int parameterIndex,
                    Calendar cal)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getTimestamp

public Timestamp getTimestamp(String parameterName)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getTimestamp

public Timestamp getTimestamp(String parameterName,
                              Calendar cal)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getTimestamp

public Timestamp getTimestamp(int parameterIndex)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getTimestamp

public Timestamp getTimestamp(int parameterIndex,
                              Calendar cal)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getURL

public java.net.URL getURL(String parameterName)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

getURL

public java.net.URL getURL(int parameterIndex)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

registerOutParameter

public void registerOutParameter(String parameterName,
                                 int sqlType)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

registerOutParameter

public void registerOutParameter(String parameterName,
                                 int sqlType,
                                 String typeName)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

registerOutParameter

public void registerOutParameter(String parameterName,
                                 int sqlType,
                                 int scale)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

registerOutParameter

public void registerOutParameter(int parameterIndex,
                                 int sqlType)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

registerOutParameter

public void registerOutParameter(int parameterIndex,
                                 int sqlType,
                                 String typeName)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

registerOutParameter

public void registerOutParameter(int parameterIndex,
                                 int sqlType,
                                 int scale)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

setAsciiStream

public void setAsciiStream(String parameterName,
                           java.io.InputStream x,
                           int length)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

setBigDecimal

public void setBigDecimal(String parameterName,
                          BigDecimal x)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

setBinaryStream

public void setBinaryStream(String parameterName,
                            java.io.InputStream x,
                            int length)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

setBoolean

public void setBoolean(String parameterName,
                       boolean x)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

setByte

public void setByte(String parameterName,
                    byte x)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

setBytes

public void setBytes(String parameterName,
                     byte[] x)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

setCharacterStream

public void setCharacterStream(String parameterName,
                               java.io.Reader x,
                               int length)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

setDate

public void setDate(String parameterName,
                    Date x)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

setDate

public void setDate(String parameterName,
                    Date x,
                    Calendar cal)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

setDouble

public void setDouble(String parameterName,
                      double x)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

setFloat

public void setFloat(String parameterName,
                     float x)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

setInt

public void setInt(String parameterName,
                   int x)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

setLong

public void setLong(String parameterName,
                    long x)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

setNull

public void setNull(String parameterName,
                    int sqlType)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

setNull

public void setNull(String parameterName,
                    int sqlType,
                    String typeName)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

setObject

public void setObject(String parameterName,
                      Object x)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

setObject

public void setObject(String parameterName,
                      Object x,
                      int targetSqlType)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

setObject

public void setObject(String parameterName,
                      Object x,
                      int targetSqlType,
                      int scale)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

setShort

public void setShort(String parameterName,
                     short x)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

setString

public void setString(String parameterName,
                      String x)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

setTime

public void setTime(String parameterName,
                    Time x)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

setTime

public void setTime(String parameterName,
                    Time x,
                    Calendar cal)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

setTimestamp

public void setTimestamp(String parameterName,
                         Timestamp x)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

setTimestamp

public void setTimestamp(String parameterName,
                         Timestamp x,
                         Calendar cal)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

setURL

public void setURL(String parameterName,
                   java.net.URL val)
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

wasNull

public boolean wasNull()
            throws SQLException
Delgates calls to the callable statement; SQLExceptions thrown from the callable statement will cause an event to be fired on the connection pool listeners.

Generated on June 12 2008