在PL/SQL Developer中调试包过程时,如何在参数值中设置CLOB?

发布于 2024-12-13 02:56:14 字数 275 浏览 2 评论 0原文

我正在使用 PL/SQL Developer 调试 Oracle 包,但遇到了一个问题 - 其中一个参数是 CLOB(这是一个大屁股的 XML 字符串)。我可以从应用程序端传递它并使其成为 CLOB,但在 PL/SQL 调试器中,我将 XML 的字符串表示形式放入调试器中,以便包中的 proc 将其视为 CLOB?就目前情况而言,当设置它,然后进入包时,参数的计算结果为 NULL,但字符串没问题。

这是调试设置窗口

I'm debugging an Oracle package using PL/SQL developer, but I'm running into a problem - one of the parameters is a CLOB (it's a big ass XML string). I can pass it in from the application side and have it be a CLOB, but in the PL/SQL debugger, I put the string representation of the XML into the debugger so the proc in the package treats it as a CLOB? As it stands, when set it, then step into the package, the parameter evaluates to NULL, but the string is fine.

This is the debug setup window

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

遗忘曾经 2024-12-20 02:56:14

您始终可以使用调用 SP 的 pl/sql 块。在本例中,取消选择 CLOB 参数对应的复选框,然后将调用语句替换为以下内容:

declare
    myClob1 clob := to_clob('your data');
begin
    searchtrackingpolicies_split(callerid => :callerid,
                                 xmlcriteria => myClob1,
                                 xmlsearchresults => :xmlsearchresults);
);
end;

请注意,myClob1 之前的冒号已被删除。

you can always use the pl/sql block that is invoking the SP. In this case deselect the corresponding checkbox to the CLOB parameter, then replace the calling statement with this:

declare
    myClob1 clob := to_clob('your data');
begin
    searchtrackingpolicies_split(callerid => :callerid,
                                 xmlcriteria => myClob1,
                                 xmlsearchresults => :xmlsearchresults);
);
end;

notice that the colon before myClob1 were removed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文