Project:
View Revisions: Issue #28909 | [ All Revisions ] [ Back to Issue ] | ||
Summary | 0028909: can't create orders in Oracle | ||
Revision | 2015-02-10 17:25 by alostale | ||
Description | OrderLoader fails in Oracle because of incorrect invocation to M_GET_STOCK_PARAM procedure. Current code invokes this procedure as a function. In Oracle CallStoredProcedure can be used to invoke functions ("select function() from dual") and procedures ("call procedure()"), based on its returnResults parameter. Note this only affects Oracle because PostgreSQL doesn't differentiate functions and procedures. Currently M_GET_STOCK_PARAM, which is a procedure with output parameters is being invoked as a function, that's the reason the exception is thrown. |
||
Revision | 2015-02-10 17:18 by alostale | ||
Description | OrderLoader fails in Oracle because of incorrect invocation to M_GET_STOCK_PARAM procedure. Current code invokes this procedure as a function. |
Copyright © 2000 - 2009 MantisBT Group |