Package org.apache.ibatis.type
Class SqlTimestampTypeHandler
- java.lang.Object
-
- org.apache.ibatis.type.TypeReference<T>
-
- org.apache.ibatis.type.BaseTypeHandler<java.sql.Timestamp>
-
- org.apache.ibatis.type.SqlTimestampTypeHandler
-
- All Implemented Interfaces:
TypeHandler<java.sql.Timestamp>
public class SqlTimestampTypeHandler extends BaseTypeHandler<java.sql.Timestamp>
-
-
Field Summary
-
Fields inherited from class org.apache.ibatis.type.BaseTypeHandler
configuration
-
-
Constructor Summary
Constructors Constructor Description SqlTimestampTypeHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.sql.Timestamp
getNullableResult(java.sql.CallableStatement cs, int columnIndex)
java.sql.Timestamp
getNullableResult(java.sql.ResultSet rs, int columnIndex)
java.sql.Timestamp
getNullableResult(java.sql.ResultSet rs, java.lang.String columnName)
Gets the nullable result.void
setNonNullParameter(java.sql.PreparedStatement ps, int i, java.sql.Timestamp 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, getSuperclassTypeParameter, toString
-
-
-
-
Method Detail
-
setNonNullParameter
public void setNonNullParameter(java.sql.PreparedStatement ps, int i, java.sql.Timestamp parameter, JdbcType jdbcType) throws java.sql.SQLException
- Specified by:
setNonNullParameter
in classBaseTypeHandler<java.sql.Timestamp>
- Throws:
java.sql.SQLException
-
getNullableResult
public java.sql.Timestamp getNullableResult(java.sql.ResultSet rs, java.lang.String columnName) throws java.sql.SQLException
Description copied from class:BaseTypeHandler
Gets the nullable result.- Specified by:
getNullableResult
in classBaseTypeHandler<java.sql.Timestamp>
- Parameters:
rs
- the rscolumnName
- Colunm name, when configurationuseColumnLabel
isfalse
- Returns:
- the nullable result
- Throws:
java.sql.SQLException
- the SQL exception
-
getNullableResult
public java.sql.Timestamp getNullableResult(java.sql.ResultSet rs, int columnIndex) throws java.sql.SQLException
- Specified by:
getNullableResult
in classBaseTypeHandler<java.sql.Timestamp>
- Throws:
java.sql.SQLException
-
getNullableResult
public java.sql.Timestamp getNullableResult(java.sql.CallableStatement cs, int columnIndex) throws java.sql.SQLException
- Specified by:
getNullableResult
in classBaseTypeHandler<java.sql.Timestamp>
- Throws:
java.sql.SQLException
-
-