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