oracle - No overload for method takes 1 arguments -


i have 1 store procedure in oracle database same this:

    create or replace procedure  ussd_100(inshenasehg      in      varchar2,                                    outshenasehp     out  varchar2,                                    outamt           out  number) begin        select  a_shenasehp,nvl(a_amtkol,0)-nvl(a_cred,0)    outshenasehp,outamt  a_ghabz           a_shenasehg=inshenasehg , a_year=95 , a_ghabz=1;   end ;   / commit; show errors; 

when call procedure in asp.net mvc action same under:

   public actionresult searcheshtrak(string a_shenasehg)        {             return db.ussd_100(a_shenasehg).tostring();           } 

i have under message error:

no overload method 'ussd_100' takes 1 arguments

please me.thanks


Comments

Popular posts from this blog

resizing Telegram inline keyboard -

command line - How can a Python program background itself? -

php - "cURL error 28: Resolving timed out" on Wordpress on Azure App Service on Linux -