我正在尝试检索我的java代码中的列表,并在我工作的某个环境中收到以下错误。
--- ibatis / ProductSqlMap.xml中发生错误。
--- The error occurred while applying a parameter map.
--- Check the searchProductsParamMap.
--- Check the statement (update procedure failed).
--- Cause: java.sql.SQLException: ORA-06550: line 1, column 13:
PLS-00905: object GLOBALS.PKGTEST_SEARCH is invalid
ORA-06550: line 1, column 7:
PL/SQL: Statement ignored
<parameterMap id="searchProductsParamMap" class="java.util.Map">
<parameter property="output" javaType="java.sql.ResultSet" jdbcType="ORACLECURSOR" mode="OUT" resultMap="Digest" />
<parameter property="p_prodName" jdbcType="VARCHAR" javaType="string" mode="IN" />
<parameter property="p_prodFrequency" jdbcType="VARCHAR" javaType="string" mode="IN" />
</parameterMap>
这适用于不同的环境。能不能让我知道它可能不起作用的可能原因。我没有看到我的代码存在问题,因为它适用于其他环境。