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