You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-dev@db.apache.org by "Kathey Marsden (JIRA)" <ji...@apache.org> on 2007/04/03 00:46:32 UTC

[jira] Created: (DERBY-2513) Network client allows OUT param to be set to a value

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.