接口 ColumnHandler
-
方法概要
修饰符和类型方法说明getAsciiStream(SQLInterceptState interceptState, int columnIndex, String tableName, String columnName, InputStream value) getBigDecimal(SQLInterceptState interceptState, int columnIndex, String tableName, String columnName, BigDecimal value) getBinaryStream(SQLInterceptState interceptState, int columnIndex, String tableName, String columnName, InputStream value) booleangetBoolean(SQLInterceptState interceptState, int columnIndex, String tableName, String columnName, boolean value) bytegetByte(SQLInterceptState interceptState, int columnIndex, String tableName, String columnName, byte value) byte[]getBytes(SQLInterceptState interceptState, int columnIndex, String tableName, String columnName, byte[] value) getCharacterStream(SQLInterceptState interceptState, int columnIndex, String tableName, String columnName, Reader value) getDate(SQLInterceptState interceptState, int columnIndex, String tableName, String columnName, Date value) doublegetDouble(SQLInterceptState interceptState, int columnIndex, String tableName, String columnName, double value) floatgetFloat(SQLInterceptState interceptState, int columnIndex, String tableName, String columnName, float value) intgetInt(SQLInterceptState interceptState, int columnIndex, String tableName, String columnName, int value) longgetLong(SQLInterceptState interceptState, int columnIndex, String tableName, String columnName, long value) getObject(SQLInterceptState interceptState, int columnIndex, String tableName, String columnName, Object value) shortgetShort(SQLInterceptState interceptState, int columnIndex, String tableName, String columnName, short value) getString(SQLInterceptState interceptState, int columnIndex, String tableName, String columnName, String value) getTime(SQLInterceptState interceptState, int columnIndex, String tableName, String columnName, Time value) getTimestamp(SQLInterceptState interceptState, int columnIndex, String tableName, String columnName, Timestamp value) getUnicodeStream(SQLInterceptState interceptState, int columnIndex, String tableName, String columnName, InputStream value)
-
方法详细资料
-
getString
String getString(SQLInterceptState interceptState, int columnIndex, String tableName, String columnName, String value) -
getBoolean
boolean getBoolean(SQLInterceptState interceptState, int columnIndex, String tableName, String columnName, boolean value) -
getByte
byte getByte(SQLInterceptState interceptState, int columnIndex, String tableName, String columnName, byte value) -
getShort
short getShort(SQLInterceptState interceptState, int columnIndex, String tableName, String columnName, short value) -
getInt
int getInt(SQLInterceptState interceptState, int columnIndex, String tableName, String columnName, int value) -
getLong
long getLong(SQLInterceptState interceptState, int columnIndex, String tableName, String columnName, long value) -
getFloat
float getFloat(SQLInterceptState interceptState, int columnIndex, String tableName, String columnName, float value) -
getDouble
double getDouble(SQLInterceptState interceptState, int columnIndex, String tableName, String columnName, double value) -
getBigDecimal
BigDecimal getBigDecimal(SQLInterceptState interceptState, int columnIndex, String tableName, String columnName, BigDecimal value) -
getBytes
byte[] getBytes(SQLInterceptState interceptState, int columnIndex, String tableName, String columnName, byte[] value) -
getDate
Date getDate(SQLInterceptState interceptState, int columnIndex, String tableName, String columnName, Date value) -
getTime
Time getTime(SQLInterceptState interceptState, int columnIndex, String tableName, String columnName, Time value) -
getTimestamp
Timestamp getTimestamp(SQLInterceptState interceptState, int columnIndex, String tableName, String columnName, Timestamp value) -
getAsciiStream
InputStream getAsciiStream(SQLInterceptState interceptState, int columnIndex, String tableName, String columnName, InputStream value) -
getUnicodeStream
InputStream getUnicodeStream(SQLInterceptState interceptState, int columnIndex, String tableName, String columnName, InputStream value) -
getBinaryStream
InputStream getBinaryStream(SQLInterceptState interceptState, int columnIndex, String tableName, String columnName, InputStream value) -
getObject
Object getObject(SQLInterceptState interceptState, int columnIndex, String tableName, String columnName, Object value) -
getCharacterStream
Reader getCharacterStream(SQLInterceptState interceptState, int columnIndex, String tableName, String columnName, Reader value)
-