1 /**
2 * Copyright 2009-2015 the original author or authors.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
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
23 /**
24 * @author Clinton Begin
25 */
26 public class NStringTypeHandler extends BaseTypeHandler<String> {
27
28 @Override
29 public void setNonNullParameter(PreparedStatement ps, int i, String parameter, JdbcType jdbcType)
30 throws SQLException {
31 // ps.setNString(i, ((String) parameter));
32 ps.setString(i, parameter);
33 }
34
35 @Override
36 public String getNullableResult(ResultSet rs, String columnName)
37 throws SQLException {
38 // return rs.getNString(columnName);
39 return rs.getString(columnName);
40 }
41
42 @Override
43 public String getNullableResult(ResultSet rs, int columnIndex)
44 throws SQLException {
45 return rs.getString(columnIndex);
46 }
47
48 @Override
49 public String getNullableResult(CallableStatement cs, int columnIndex)
50 throws SQLException {
51 // return cs.getNString(columnIndex);
52 return cs.getString(columnIndex);
53 }
54
55 }