in reply to Re^2: DB2 error: "Can't bind unknown parameter marker ':p4'"
in thread DB2 error: "Can't bind unknown parameter marker ':p4'"

The stored procedure looks to be working fine - I tested it manually using the Data Studio tool. So it must be something funky with the way that I'm calling it...
  • Comment on Re^3: DB2 error: "Can't bind unknown parameter marker ':p4'"

Replies are listed 'Best First'.
Re^4: DB2 error: "Can't bind unknown parameter marker ':p4'"
by Anonymous Monk on Jan 19, 2013 at 08:31 UTC

    Incrase DBI->trace level (3) and see what you get, compare that to "data studio tool" for similar

    I guess the :p4 refers to  $sth->bind_param_inout(4,\$returnValue,20);, that is the 4th bind_param, but you only have three placeholders (?,?,?)

    So unless mySchema.myStoredProcedure somehow has a placeholder (i've never used one), there is your problem