我有以下存储过程 - 现在只返回两个整数:
USE [DB_NAME_HERE]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
create PROCEDURE [dbo].[PR_PROCEDURE_NAME]
SELECT 0 AS ValueA,0 AS ValueB
我有以下映射器XML:
<resultMap id="BaseResultMap" type="com.companyname.service.mybatis.model.modelClass">
<result column="ValueA" jdbcType="INTEGER" property="valueA" />
<result column="ValueB" jdbcType="INTEGER" property="valueB" />
</resultMap>
<select id="getPurgedTokens" resultMap="BaseResultMap" statementType="CALLABLE">
{call PR_PROCEDURE_NAME(
#{resultContainer.valueA, mode=OUT, jdbcType=INTEGER},
#{resultContainer.valueB, mode=OUT, jdbcType=INTEGER}
)}
</select>
然后我有以下java类用于映射:
public class modelClass implements Serializable {
private int valueA;
private int valueB;
public int getValueA() { return this.valueA; }
public void setValueA(int valueA) { this.valueA = valueA; }
public int getValueB() { return this.valueB; }
public void setValueB(int valueB) { this.valueB= valueB; }
}
但是当我运行我的应用程序并尝试获取任何类型的数据时,我收到以下错误:
code=DataIntegrityViolationException,messages=[SqlSession operation; SQL []; Invalid JDBC call escape at line position 10.; nested exception is java.sql.SQLException: Invalid JDBC call escape at line position 10., Invalid JDBC call escape at line position 10.]]
非常感谢所有帮助 - 我一直试图让这个工作好几天!
编辑:更新最新代码的完整副本!
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.company.product.mybatis.mappers.MapperXML">
<!-- Commented out the base result map because now we link directly in the paramter type? -->
<!--
<resultMap id="BaseResultMap" type="com.companyname.service.mybatis.model.modelClass">
<result column="ValueA" javaType="java.lang.Integer" jdbcType="INTEGER" property="valueA"/>
<result column="ValueB" javaType="java.lang.Integer" jdbcType="INTEGER" property="valueB"/>
</resultMap>-->
<!-- -------------------------------------------- -->
<select id="getPurgedTokens" parameterType="com.companyname.service.mybatis.model.ModelClass" statementType="CALLABLE">
{call PR_TokenPurge_Clean(
#{dvalueA, mode=OUT, jdbcType=INTEGER},
#{valueB, mode=OUT, jdbcType=INTEGER}
)}
</select>
</mapper>
package com.companyname.service.mybatis.model;
import java.io.Serializable;
public class ModelClass implements Serializable {
private int valueA;
private int valueB;
public int getVavlueA() { return this.valueA; }
public void setValueA(int valueA) { this.valueA = valueA; }
public int getValueB() { return this.valueB; }
public void setValueB(int valueB) { this.valueB = valueB; }
}
package com.company.product.dao.mybatis;
[imports (removed for brevity and security)...]
@Repository
public class ModelClassDaoMybatis implements ModelClassDao {
private TokenPurgeModelMapper tokenPurgeModelMapper;
private SqlSessionOperations sqlSessionOperations;
@Override
public TokenPurgeModel purgeTokens()
{
if (this.sqlSessionOperations.selectOne(".getPurgedTokens") != null)
{
System.out.println("I FOUND A VALUE!!!!!!");
return (TokenPurgeModel) sqlSessionOperations.selectOne(testing);
}
else
{
System.out.println("No value found for select statement");
return null;
}
}
@Override
public List<TokenPurgeModel> getPurgedTokens() {
return tokenPurgeModelMapper.getPurgedTokens();
}
@Required
public void setTokenPurgeModelMapper(final TokenPurgeModelMapper tokenPurgeMapper) {
this.tokenPurgeModelMapper = tokenPurgeMapper;
}
@Required
public void setSqlSessionOperations(SqlSessionOperations sqlSessionOperations) {
this.sqlSessionOperations = sqlSessionOperations;
}
}
package com.company.product.mybatis.mappers;
[imports (removed for brevity and security)...]
public interface TokenPurgeModelMapper {
// This is the one I am using right now. (as seen in the DAO!)
TokenPurgeModel purgeTokens();
// Get the list of tokens which have been removed from the PAN table.
List<TokenPurgeModel> getPurgedTokens(); // This is actually never used - will be used in later funcationality!
}
感谢你为我看这个!
答案 0 :(得分:0)
确实,首先要使用语法{call PR_PROCEDURE_NAME()}
然后它取决于程序的编写方式以及使用的SGBD。 有多种可能性,包括:
将值作为过程OUT参数返回:
<select id="getPurgedTokens" parameterType="com.companyname.service.mybatis.model.modelClass" statementType="CALLABLE">
{call PR_PROCEDURE_NAME(
#{valueA, mode=OUT, jdbcType=INTEGER},
#{valueB, mode=OUT, jdbcType=INTEGER}
)}
</select>
在这种情况下, modelClass 参数实际上并不提供输入参数,在此处仅用作OUT参数的目标容器;然后你不需要 resultMap 。
如果结果变得更复杂,请将光标返回到选择:
{call PR_PROCEDURE_NAME(
#{resultContainer.resultList, mode=OUT, jdbcType=CURSOR, javaType=java.sql.ResultSet, resultMap=BaseResultMap}
)}
或者一个函数(而不是一个过程)返回光标获取Select(一些SGBD可能只允许在体内写入SELECT),然后只是:
SELECT function_name from DUAL
与 resultMap
绑定