Calling Oracle Stored Procedures
Hello.
Im tryning to call a Oracle Stored procedure and send the parameteres to the database by the oracle parameter name.
But i dosnt seems to work, ive tryed this on oracle 10g:
OracleParameter prm3 = new OracleParameter("@p_Brug_Initi", OracleDbType.Varchar2);
prm3.Direction = ParameterDirection.Input;
prm3.Value = password;
cmd.Parameters.Add(prm3);
It seems that c# ignores the "@p_Brug_Initi", how can i get this working?