SQL state [99999]; error code [17004]; Invalid column type: 1111 With Spring SimpleJdbcCall
问题 Hi All I am using spring simple JDBC template to call the oracle procedure the below are my code. The procedure create or replace PROCEDURE get_all_system_users( pi_client_code IN VARCHAR2, po_system_users OUT T_SYSTEM_USER_TAB, po_error_code OUT NUMBER, po_error_description OUT VARCHAR2) IS ctr NUMBER; sysUser SYSTEM_USER_OBJ; BEGIN ctr:=0; po_system_users:= t_system_user_tab(); end The Spring Dao class public class ManualSaleStoredProcedureDao { private SimpleJdbcCall getAllSytemUsers;