How does one call/execute a Java Stored Procedure?

  • From SQL*Plus: Use execute or call
  • From JDBC: Use the CallableStatement object
  • From SQLJ: #sql { call ...} eg: #sql { call ACME.BEGINRENTAL(:in memberID, :in employeeID, :out, ...) };