类 MyBaseTypeHander<T>
- java.lang.Object
-
- org.apache.ibatis.type.TypeReference<T>
-
- org.apache.ibatis.type.BaseTypeHandler<T>
-
- tech.codingless.core.plugs.mybaties3.typehandler.MyBaseTypeHander<T>
-
- 所有已实现的接口:
org.apache.ibatis.type.TypeHandler<T>
public class MyBaseTypeHander<T> extends org.apache.ibatis.type.BaseTypeHandler<T>
-
-
构造器概要
构造器 构造器 说明 MyBaseTypeHander()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 TgetNullableResult(CallableStatement cs, int columnIndex)TgetNullableResult(ResultSet rs, int columnIndex)TgetNullableResult(ResultSet rs, String columnName)voidsetNonNullParameter(PreparedStatement ps, int i, T parameter, org.apache.ibatis.type.JdbcType jdbcType)
-
-
-
方法详细资料
-
setNonNullParameter
public void setNonNullParameter(PreparedStatement ps, int i, T parameter, org.apache.ibatis.type.JdbcType jdbcType) throws SQLException
- 指定者:
setNonNullParameter在类中org.apache.ibatis.type.BaseTypeHandler<T>- 抛出:
SQLException
-
getNullableResult
public T getNullableResult(ResultSet rs, String columnName) throws SQLException
- 指定者:
getNullableResult在类中org.apache.ibatis.type.BaseTypeHandler<T>- 抛出:
SQLException
-
getNullableResult
public T getNullableResult(ResultSet rs, int columnIndex) throws SQLException
- 指定者:
getNullableResult在类中org.apache.ibatis.type.BaseTypeHandler<T>- 抛出:
SQLException
-
getNullableResult
public T getNullableResult(CallableStatement cs, int columnIndex) throws SQLException
- 指定者:
getNullableResult在类中org.apache.ibatis.type.BaseTypeHandler<T>- 抛出:
SQLException
-
-