07-21-2009, 04:17 AM
I resolved the above error and getting a new one now.
cm.execute ' This line is giving an error GetSetting is not a procedure or undefined..
any pointers how to define the command text when giving the SP under a Oracle package?
TIA,
Code:
Set cm.ActiveConnection = conn
cm.CommandType = 4
cm.CommandText = "SDCF.P_CONFIG_SETTING.GetSetting"
cm.Parameters.Append cm.CreateParameter("P1",129,1,20,"ROUTE_ROLLOVER")
cm.Parameters.Append cm.CreateParameter("P2",129,1,20,"TO_ADDRESS")
cm.execute ' This line is giving an error GetSetting is not a procedure or undefined..
any pointers how to define the command text when giving the SP under a Oracle package?
TIA,