Alex

Alex

  • NA
  • 1
  • 0

Calling Oracle Stored Procedures

Mar 19 2007 6:44 AM
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?