proc_nameparameter , ;
CALL |
try
{ CallableStatement statement; int Part_num = 318; // Associate the statement with the procedure call // (conn is a previously-instantiated connection object) statement = conn.prepareCall("{call order_parts(?)}"); // Bind the parameter. statement.setInt(1, Part_num); // Execute the statement. statement.execute(); } |