Package org.apache.ibatis.type
Class BlobInputStreamTypeHandler
- java.lang.Object
-
- org.apache.ibatis.type.TypeReference<T>
-
- org.apache.ibatis.type.BaseTypeHandler<InputStream>
-
- org.apache.ibatis.type.BlobInputStreamTypeHandler
-
- All Implemented Interfaces:
TypeHandler<InputStream>
public class BlobInputStreamTypeHandler extends BaseTypeHandler<InputStream>
- Since:
- 3.4.0
- Author:
- Kazuki Shimizu
-
-
Field Summary
-
Fields inherited from class org.apache.ibatis.type.BaseTypeHandler
configuration
-
-
Constructor Summary
Constructors Constructor Description BlobInputStreamTypeHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description InputStream
getNullableResult(CallableStatement cs, int columnIndex)
Get anInputStream
that corresponds to a specified column index fromCallableStatement
.InputStream
getNullableResult(ResultSet rs, int columnIndex)
Get anInputStream
that corresponds to a specified column index fromResultSet
.InputStream
getNullableResult(ResultSet rs, String columnName)
Get anInputStream
that corresponds to a specified column name fromResultSet
.void
setNonNullParameter(PreparedStatement ps, int i, InputStream parameter, JdbcType jdbcType)
Set anInputStream
intoPreparedStatement
.-
Methods inherited from class org.apache.ibatis.type.BaseTypeHandler
getResult, getResult, getResult, setConfiguration, setParameter
-
Methods inherited from class org.apache.ibatis.type.TypeReference
getRawType, toString
-
-
-
-
Method Detail
-
setNonNullParameter
public void setNonNullParameter(PreparedStatement ps, int i, InputStream parameter, JdbcType jdbcType) throws SQLException
Set anInputStream
intoPreparedStatement
.- Specified by:
setNonNullParameter
in classBaseTypeHandler<InputStream>
- Throws:
SQLException
- See Also:
PreparedStatement.setBlob(int, InputStream)
-
getNullableResult
public InputStream getNullableResult(ResultSet rs, String columnName) throws SQLException
Get anInputStream
that corresponds to a specified column name fromResultSet
.- Specified by:
getNullableResult
in classBaseTypeHandler<InputStream>
- Parameters:
rs
- the rscolumnName
- Column name, when configurationuseColumnLabel
isfalse
- Returns:
- the nullable result
- Throws:
SQLException
- the SQL exception- See Also:
ResultSet.getBlob(String)
-
getNullableResult
public InputStream getNullableResult(ResultSet rs, int columnIndex) throws SQLException
Get anInputStream
that corresponds to a specified column index fromResultSet
.- Specified by:
getNullableResult
in classBaseTypeHandler<InputStream>
- Throws:
SQLException
- See Also:
ResultSet.getBlob(int)
-
getNullableResult
public InputStream getNullableResult(CallableStatement cs, int columnIndex) throws SQLException
Get anInputStream
that corresponds to a specified column index fromCallableStatement
.- Specified by:
getNullableResult
in classBaseTypeHandler<InputStream>
- Throws:
SQLException
- See Also:
CallableStatement.getBlob(int)
-
-