Package org.apache.ibatis.type
Class ByteArrayTypeHandler
- java.lang.Object
-
- org.apache.ibatis.type.TypeReference<T>
-
- org.apache.ibatis.type.BaseTypeHandler<byte[]>
-
- org.apache.ibatis.type.ByteArrayTypeHandler
-
- All Implemented Interfaces:
TypeHandler<byte[]>
public class ByteArrayTypeHandler extends BaseTypeHandler<byte[]>
- Author:
- Clinton Begin
-
-
Field Summary
-
Fields inherited from class org.apache.ibatis.type.BaseTypeHandler
configuration
-
-
Constructor Summary
Constructors Constructor Description ByteArrayTypeHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]getNullableResult(java.sql.CallableStatement cs, int columnIndex)byte[]getNullableResult(java.sql.ResultSet rs, int columnIndex)byte[]getNullableResult(java.sql.ResultSet rs, java.lang.String columnName)voidsetNonNullParameter(java.sql.PreparedStatement ps, int i, byte[] parameter, JdbcType jdbcType)-
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(java.sql.PreparedStatement ps, int i, byte[] parameter, JdbcType jdbcType) throws java.sql.SQLException- Specified by:
setNonNullParameterin classBaseTypeHandler<byte[]>- Throws:
java.sql.SQLException
-
getNullableResult
public byte[] getNullableResult(java.sql.ResultSet rs, java.lang.String columnName) throws java.sql.SQLException- Specified by:
getNullableResultin classBaseTypeHandler<byte[]>columnName- Colunm name, when configurationuseColumnLabelisfalse- Throws:
java.sql.SQLException
-
getNullableResult
public byte[] getNullableResult(java.sql.ResultSet rs, int columnIndex) throws java.sql.SQLException- Specified by:
getNullableResultin classBaseTypeHandler<byte[]>- Throws:
java.sql.SQLException
-
getNullableResult
public byte[] getNullableResult(java.sql.CallableStatement cs, int columnIndex) throws java.sql.SQLException- Specified by:
getNullableResultin classBaseTypeHandler<byte[]>- Throws:
java.sql.SQLException
-
-