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.time.OffsetDateTime;
23
24
25
26
27
28 public class OffsetDateTimeTypeHandler extends BaseTypeHandler<OffsetDateTime> {
29
30 @Override
31 public void setNonNullParameter(PreparedStatement ps, int i, OffsetDateTime parameter, JdbcType jdbcType)
32 throws SQLException {
33 ps.setObject(i, parameter);
34 }
35
36 @Override
37 public OffsetDateTime getNullableResult(ResultSet rs, String columnName) throws SQLException {
38 return rs.getObject(columnName, OffsetDateTime.class);
39 }
40
41 @Override
42 public OffsetDateTime getNullableResult(ResultSet rs, int columnIndex) throws SQLException {
43 return rs.getObject(columnIndex, OffsetDateTime.class);
44 }
45
46 @Override
47 public OffsetDateTime getNullableResult(CallableStatement cs, int columnIndex) throws SQLException {
48 return cs.getObject(columnIndex, OffsetDateTime.class);
49 }
50
51 }