ORA-06502: PL/SQL: numeric or value error: character string buffer too small exception from C# code

前端 未结 6 2208
暖寄归人
暖寄归人 2021-02-20 03:33

I am trying to execute some oracle pl/sql procedure with in and out parameters from # code on asp.net. I want to retrive the value from out parameter. but when I execute i am ge

6条回答
  •  一向
    一向 (楼主)
    2021-02-20 03:55

    you need to increase the size of u_id

    u_id varchar2(4000);
    

提交回复
热议问题