Calling PL/SQL procedure with user defined record as its IN parameter using JDBC
I am trying to call the following PL/SQL procedure that takes a user defined record type as an IN parameter. -- User Defined Record TYPE EMP_REC IS RECORD ( id employees.employee_id%type, name employees.last_name%type, dept_name departments.department_name%type, job_title jobs.job_title%type, salary employees.salary%type, manager_id employees.employee_id%type, city locations.city%type, phone employees.phone_number%type ); Here is the definition of the user defined record: -- PURPOSE: Prints all employee information from the employee record -- Example Of: PROCEDURE that takes in a parameter of