我正在使用 Spring-JDBC Support 和 PostgreSQL 并出现错误。我能够从后端运行 proc。所以它是编译的proc。
CREATE OR REPLACE PACKAGE schemaname.my_pkg_name
IS
PROCEDURE update_email(person_id numeric, OUT email_gratitude_id numeric);
END my_pkg_name;
CREATE OR REPLACE PACKAGE BODY schemaname.my_pkg_name
IS
PROCEDURE update_email(person_id numeric, OUT email_gratitude_id numeric) IS
begin
select email_gratitude_id into email_gratitude_id from schemaname.emp_email_dtls_tbl
where person_id=person_id;
end;
END my_pkg_name
private class EmployeeSP extends StoredProcedure
{
private static final String SPROC_NAME = "schemaname.my_pkg_name.update_email";
public EmployeeSP( DataSource datasource )
{
super( datasource, SPROC_NAME );
declareParameter( new SqlParameter("person_id", Types.INTEGER) );
declareParameter( new SqlOutParameter("email_gratitude_id", Types.INTEGER ) );
compile();
}
public Object execute(int emp_id)
{
Map<String,Object> results = super.execute(emp_id,null);
return results.get("email_gratitude_id");
}
};
EmployeeSP tp = new EmployeeSP(template.getDataSource());
tp.execute(123456);
==================================================== ==================== 21:31:48,386 错误 [com.myproject.dao.EmailDAOImpl] (http--0.0.0.0-8080-6) org.springframework.jdbc.BadSqlGrammarException: CallableStatementCallback; 错误的 SQL 语法 [{call schemaname.my_pkg_name.update_email(?, ?)}]; 嵌套异常是 org.postgresql.util.PSQLException:错误:函数 schemaname.my_pkg_name.update_email(integer) 不存在 在 org.springframework.jdbc.support.SQLStateSQLExceptionTranslator.doTranslate(SQLStateSQLExceptionTranslator.java:98) 在 org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:72) 在 org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:80) 在 org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:80) 在 org.springframework.jdbc.core.JdbcTemplate.execute(JdbcTemplate.java:1030) 在 org.springframework.jdbc.core.JdbcTemplate.call(JdbcTemplate.java:1064)