ssqlstmt = "{Call STORED_PROCEDURE(" & INPUTPARAM & ")}"
iResult = objConnect.ExecuteSP(ssqlstmt, 1)
If iResult <> 0 Then
MsgBox "Error"
Else
MsgBox "Success"
End If
Error Message:
[Microsoft][ODBC driver for Oracle][Oracle]ORA-06550: line 1, column 7: PLS-00201: identifier 'STORED_PROCEDURE' must be declared ORA-06550: line 1, column 7: PL/SQL: Statement ignored
objConnect
? Would be helpful to show more of the code for context. Is your SP literally called "STORED_PROCEDURE" or is that a placeholder/redaction ? – Tim WilliamsCREATE PROCEDURE
) statements for creating the procedure; what theINPUTPARAM
value is. – MT0