Clob 作为 PL/SQL Java 存储过程的参数

发布于 2024-08-31 14:24:44 字数 466 浏览 4 评论 0原文

我有一个java存储过程,它接受代表一块javascript的clob并对其进行mins。调用 JSP 的函数的结构如下:

function MIN_JS(pcl_js in clob) return clob as
  language java name 'JSMin.min(oracle.sql.CLOB) return oracle.sql.CLOB';

在实际的 JSP 中,我有以下问题:

import oracle.sql.CLOB;

public class JSMin {
...
public static min(CLOB js) {
...
}

我遇到的问题是,每当我将 clob 传递给 JS_MIN 时,它在 JSP 内总是被解释为 null。我在调用 JS_MIN 之前检查了 clob,它肯定有内容。关于我缺少什么有什么想法吗?非常感谢任何帮助。

I have a java stored procedure that takes in a clob representing a chunk of javascript and mins it. The structure of the function calling the JSP is as follows:

function MIN_JS(pcl_js in clob) return clob as
  language java name 'JSMin.min(oracle.sql.CLOB) return oracle.sql.CLOB';

In the actual JSP, I have the following:

import oracle.sql.CLOB;

public class JSMin {
...
public static min(CLOB js) {
...
}

The problem I'm having is that whenever I pass a clob to JS_MIN, it is always interpreted as null inside the JSP. I've checked the clob before calling JS_MIN annd it definitely has contents. Any ideas as to what I'm missing? Any help is greatly appreciated.

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

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

发布评论

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

评论(1

葬シ愛 2024-09-07 14:24:44

事实证明,我发送的 JavaScript 块之一实际上是空的。我们有几个为各种控件生成 javascript 的包,其中一个显然仍在开发中,并且以一种始终返回 null 的方式进行包装,除非您以特定用户身份登录。

在我的代码中,我循环遍历所有 javascript 包,将每个包发送到 JS_MIN。一切都进展顺利,直到仍在开发中的软件包出现并通过了 null。我添加了一个简单的 null 检查,现在一切正常。

所以简短的回答是:Doh!

As it turns out, one of the javascript chunks I was sending was in fact null. We have several packages that generate javascript for various controls and one is apparently still under development and wrapped in a way that it always returns null unless you are logged in as a particular user.

In my code, I loop across all the javascript packages, sending each to JS_MIN. Everything was working peachy until the package still in development came along and passed null. I added a simple check for null and everything works perfectly now.

So the short answer is: Doh!

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