Recent content by oleksastep

  1. O

    Server crash on calling stored procedure with negative parameter

    Yes, negative values are legitimate. With positive values that's all right. I get the error even when running the example, wrote above. Looks like the procedure does't understand negative numeric (decimal) value.
  2. O

    Server crash on calling stored procedure with negative parameter

    I have simple stored procedure like this: CREATE PROCEDURE pHelloW1 ( IN bonusc NUMERIC(9,2) ) BEGIN END; and when I call it with negative parameter call pHelloW1(-1); I get error === SQL Exception 1 === SQLState=HY000 ErrorCode=0 [DataDirect][OpenEdge JDBC Driver]A server crash is likely...
  3. O

    Server crash on calling stored procedure with negative parameter

    Hello, I have simple stored procedure like this: CREATE PROCEDURE pHelloW1 ( IN bonusc NUMERIC(9,2) ) BEGIN END; and when I call it with negative parameter call pHelloW1(-1); I get error === SQL Exception 1 === SQLState=HY000 ErrorCode=0 [DataDirect][OpenEdge JDBC Driver]A server crash is...
Back
Top