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