我在我的项目oracle数据库上只读过访问权限。当我在PLSQL开发人员中手动执行存储过程时,它将提供在SOAP UI中使用的xml文件输出。
虽然我试图在UFT中自动执行相同的操作,但我在查询中使用单引号作为注释。如何成功执行程序并获得输出?
我的程序
我计划的UFT代码
Set cm = CreateObject(”ADODB.Command”)
cm.ActiveConnection = str
' Set the command type to Stored Procedures'
cm.CommandType = 4
' Stored Procedures'
cm.CommandText = strProc
' Define Parameters for the stored procedure'
cm.Execute()