Network client allows OUT param to be set to a value
----------------------------------------------------
Key: DERBY-2513
URL: https://issues.apache.org/jira/browse/DERBY-2513
Project: Derby
Issue Type: Bug
Components: Network Client
Affects Versions: 10.3.0.0
Reporter: Kathey Marsden
Priority: Minor
Network client allows an output param to be set to a value.
See this case in the converted procedure.java LangProcedureTest.java with a
reference to this bug number.
// try to set an OUT param
try {
op.setBigDecimal(1, new BigDecimal("22.32"));
fail("FAIL - set OUT param to value");
} catch (SQLException sqle) {
assertSQLState("XCL27", sqle);
}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.