I am trying to execute a stored procedure in oracle database. I am getting ""The number of parameters does not match number of values for stored procedure" error while executing the below vb.net code. I am using Microsoft.Practices.EnterpriseLibrary.Data version 2.0"
Appreciate help. Thanks.
Dim paramValues As Object() = {daysOfInactivity, Nothing}
Dim oraCommand As OracleCommand = CType(Me.DB.GetStoredProcCommand("P_PES_CREATE_WORK_ITEM_WS.get_inactive_submitted_wos", paramValues), OracleCommand)