接口 ParameterBindings
-
- 所有已知实现类:
ParameterBindingsImpl
public interface ParameterBindingsInterface to allow PreparedStatement implementations to expose their parameter bindings to QueryInterceptors.
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 ArraygetArray(int parameterIndex)InputStreamgetAsciiStream(int parameterIndex)BigDecimalgetBigDecimal(int parameterIndex)BigIntegergetBigInteger(int parameterIndex)InputStreamgetBinaryStream(int parameterIndex)BlobgetBlob(int parameterIndex)booleangetBoolean(int parameterIndex)bytegetByte(int parameterIndex)byte[]getBytes(int parameterIndex)ReadergetCharacterStream(int parameterIndex)ClobgetClob(int parameterIndex)DategetDate(int parameterIndex)doublegetDouble(int parameterIndex)floatgetFloat(int parameterIndex)intgetInt(int parameterIndex)longgetLong(int parameterIndex)ReadergetNCharacterStream(int parameterIndex)ReadergetNClob(int parameterIndex)ObjectgetObject(int parameterIndex)RefgetRef(int parameterIndex)shortgetShort(int parameterIndex)StringgetString(int parameterIndex)TimegetTime(int parameterIndex)TimestampgetTimestamp(int parameterIndex)URLgetURL(int parameterIndex)booleanisNull(int parameterIndex)
-
-
-
方法详细资料
-
getArray
Array getArray(int parameterIndex) throws SQLException
- 抛出:
SQLException
-
getAsciiStream
InputStream getAsciiStream(int parameterIndex) throws SQLException
- 抛出:
SQLException
-
getBigDecimal
BigDecimal getBigDecimal(int parameterIndex) throws SQLException
- 抛出:
SQLException
-
getBinaryStream
InputStream getBinaryStream(int parameterIndex) throws SQLException
- 抛出:
SQLException
-
getBlob
Blob getBlob(int parameterIndex) throws SQLException
- 抛出:
SQLException
-
getBoolean
boolean getBoolean(int parameterIndex) throws SQLException- 抛出:
SQLException
-
getByte
byte getByte(int parameterIndex) throws SQLException- 抛出:
SQLException
-
getBytes
byte[] getBytes(int parameterIndex) throws SQLException- 抛出:
SQLException
-
getCharacterStream
Reader getCharacterStream(int parameterIndex) throws SQLException
- 抛出:
SQLException
-
getClob
Clob getClob(int parameterIndex) throws SQLException
- 抛出:
SQLException
-
getDate
Date getDate(int parameterIndex) throws SQLException
- 抛出:
SQLException
-
getDouble
double getDouble(int parameterIndex) throws SQLException- 抛出:
SQLException
-
getFloat
float getFloat(int parameterIndex) throws SQLException- 抛出:
SQLException
-
getInt
int getInt(int parameterIndex) throws SQLException- 抛出:
SQLException
-
getBigInteger
BigInteger getBigInteger(int parameterIndex) throws SQLException
- 抛出:
SQLException
-
getLong
long getLong(int parameterIndex) throws SQLException- 抛出:
SQLException
-
getNCharacterStream
Reader getNCharacterStream(int parameterIndex) throws SQLException
- 抛出:
SQLException
-
getNClob
Reader getNClob(int parameterIndex) throws SQLException
- 抛出:
SQLException
-
getObject
Object getObject(int parameterIndex) throws SQLException
- 抛出:
SQLException
-
getRef
Ref getRef(int parameterIndex) throws SQLException
- 抛出:
SQLException
-
getShort
short getShort(int parameterIndex) throws SQLException- 抛出:
SQLException
-
getString
String getString(int parameterIndex) throws SQLException
- 抛出:
SQLException
-
getTime
Time getTime(int parameterIndex) throws SQLException
- 抛出:
SQLException
-
getTimestamp
Timestamp getTimestamp(int parameterIndex) throws SQLException
- 抛出:
SQLException
-
getURL
URL getURL(int parameterIndex) throws SQLException
- 抛出:
SQLException
-
isNull
boolean isNull(int parameterIndex) throws SQLException- 抛出:
SQLException
-
-