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