If I need to call a stored procedure with 6 input parameters and 6 output parameters, how would I do this? Would it look like this?... cstmt = con.prepareCall("{?, ?, ?, ?, ?, ? = CALL MKTDS22B (?, ?, ?, ?, ?, ?)}"); or this?... cstmt = con.prepareCall("(CALL MKTDS22B (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ,?))" ); Please help! Thanks!
this: assume that in your stored procedure that the first 6 parameters are out parameters and the last 6 are in parameters(note, use curly braces in your prepareCall string):