1

我正在使用 spring JDBC 模板,

    Map resultsMap = getStoryJdbcTemplate().call(
    new CallableStatementCreator() {

      public CallableStatement createCallableStatement(Connection pConn)
          throws SQLException {
        CallableStatement callable = pConn.prepareCall(DELETE_STORY);
        callable.setLong(1, pStory.getId());
        callable.setLong(2, pStory.getVersion());
        callable.registerOutParameter(3, Types.INTEGER);
        callable.registerOutParameter(4, Types.BIGINT);
        return callable;
      }
    },
    Arrays.asList(new SqlParameter[] { new SqlParameter(Types.BIGINT), 
        new SqlParameter(Types.BIGINT),
        new SqlOutParameter("rowCount", Types.INTEGER), 
        new SqlOutParameter("version", Types.BIGINT) }));

当我执行以下查询时,我得到 The column index is out of range: 1, number of columns: 0.; 嵌套异常是 org.postgresql.util.PSQLException。

    private static final String DELETE_STORY = ""

+"Do $$"      
+ "DECLARE "
+ "   v_rowcount numeric; "
+ "   v_version numeric; "
+ "BEGIN "
+ "     DELETE FROM registrant_stories "
+ "     WHERE registrant_story_id = ? AND version = ? "
+ "     RETURNING version INTO v_version; "
+ "     GET DIAGNOSTICS v_rowcount := ROW_COUNT; "
+ "     ? := v_rowcount; "
+ "     ? := v_version; "
+ "END $$ ; ";

错误跟踪是:

   org.springframework.dao.DataIntegrityViolationException: CallableStatementCallback; SQL []; The column index is out of range: 1, number of columns: 0.; nested exception is org.postgresql.util.PSQLException: The column index is out of range: 1, number of columns: 0.
at org.springframework.jdbc.support.SQLStateSQLExceptionTranslator.doTranslate(SQLStateSQLExceptionTranslator.java:100)

谢谢,请帮帮我..

4

1 回答 1

1

错误消息意味着您期望的列比返回的列更多。

于 2017-04-25T21:17:35.983 回答