1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.apache.ibatis.type;
17
18 import java.sql.CallableStatement;
19 import java.sql.PreparedStatement;
20 import java.sql.ResultSet;
21 import java.sql.SQLException;
22 import java.sql.Timestamp;
23
24
25
26
27 public class SqlTimestampTypeHandler extends BaseTypeHandler<Timestamp> {
28
29 @Override
30 public void setNonNullParameter(PreparedStatement ps, int i, Timestamp parameter, JdbcType jdbcType)
31 throws SQLException {
32 ps.setTimestamp(i, parameter);
33 }
34
35 @Override
36 public Timestamp getNullableResult(ResultSet rs, String columnName) throws SQLException {
37 return rs.getTimestamp(columnName);
38 }
39
40 @Override
41 public Timestamp getNullableResult(ResultSet rs, int columnIndex) throws SQLException {
42 return rs.getTimestamp(columnIndex);
43 }
44
45 @Override
46 public Timestamp getNullableResult(CallableStatement cs, int columnIndex) throws SQLException {
47 return cs.getTimestamp(columnIndex);
48 }
49 }