尝试从UFT执行存储过程

时间:2018-03-27 18:25:16

标签: oracle stored-procedures vbscript plsqldeveloper

我在我的项目oracle数据库上只读过访问权限。当我在PLSQL开发人员中手动执行存储过程时,它将提供在SOAP UI中使用的xml文件输出。

虽然我试图在UFT中自动执行相同的操作,但我在查询中使用单引号作为注释。如何成功执行程序并获得输出?

我的程序

enter image description here

我计划的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() 

0 个答案:

没有答案