Skip to content

Commit

Permalink
Bug 558283: Missing parameter markers from DB2 Stored Procedures - Ja…
Browse files Browse the repository at this point in the history
…vadoc fix (#669) (#670)

There is small fix in Javadoc comments.
Before this following Maven command `mvn install -DskipTests -Poss-release` failed.
Line 1415 contained incorrect parameter name (index -> name).
See
https://ci.eclipse.org/eclipselink/view/Current%20Jobs/job/eclipselink-cb-master/48/
https://ci.eclipse.org/eclipselink/view/Current%20Jobs/job/eclipselink-nightly-master/76/

Signed-off-by: Radek Felcman <[email protected]>
  • Loading branch information
rfelcman authored Jan 9, 2020
1 parent 5a32c27 commit 6776890
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1391,7 +1391,9 @@ public void setHasAllocatedConnection(boolean hasAllocatedConnection) {
* INTERNAL:
*
* Get the return object from the statement. Use the parameter index to determine what return object to get.
* @param index - 0-based index in the argument list
* @param statement SQL/JDBC statement to call stored procedure/function
* @param index 0-based index in the argument list
* @param session Active database session (in connected state).
* @return
*/
public Object getOutputParameterValue(CallableStatement statement, int index, AbstractSession session) throws SQLException {
Expand All @@ -1403,7 +1405,9 @@ public Object getOutputParameterValue(CallableStatement statement, int index, Ab
* INTERNAL:
*
* Get the return object from the statement. Use the parameter name to determine what return object to get.
* @param index - 0-based index in the argument list
* @param statement SQL/JDBC statement to call stored procedure/function
* @param name parameter name
* @param session Active database session (in connected state).
* @return
*/
public Object getOutputParameterValue(CallableStatement statement, String name, AbstractSession session) throws SQLException {
Expand Down

0 comments on commit 6776890

Please sign in to comment.