在Oracle Apex中保存和检索大于32K的CLOB数据

时间:2012-07-09 14:45:55

标签: plsql onload oracle-apex clob

我的目标是将数据库中的CLOB数据检索到Oracle Apex应用程序中的textarea中,然后按“保存”按钮将其从textarea本身保存到数据库中。我在此页面上还有一些其他字段(作为文本字段),这些字段是非CLOB字段,并且在单击按钮时也需要保存在数据库中。

为此,我在页面的“HTML标题和正文属性”下使用以下代码。这用于将CLOB检索/保存到textarea /数据库中。请注意,Apex项中的简单PLSQL代码足以完成我在此处所做的操作,但仅限于CLOB数据小于32k字节。由于apex中plsql的限制为32k(使用sql时限制为4k),我正在使用此函数。

function clob_set(){  
        var clob_ob = new apex.ajax.clob(  
            function(){  
                var rs = p.readyState  
                if(rs == 1||rs == 2||rs == 3){  
                    $x_Show('AjaxLoading');  
                }else if(rs == 4){  
                    $s('P5075_RESPONSETEXT',p.responseText);  
                    $x_Hide('AjaxLoading');  
                }else{return false;}  
            }  
        );  

        if(!$v_IsEmpty('P5075_STYLESHEET')){clob_ob._set($v('P5075_STYLESHEET'))};  
    }  

    function clob_get(){  
        var clob_ob = new apex.ajax.clob(  
            function(){  
                var rs = p.readyState  
                if(rs == 1||rs == 2||rs == 3){  
                    $x_Show('AjaxLoading');  
                }else if(rs == 4){  
                    $s('P5075_STYLESHEET',p.responseText);  
                    $x_Hide('AjaxLoading');  
                }else{return false;}  
            }  
        );  
        clob_ob._get();  
    }

我将“页面HTML正文属性”中的一个函数称为 onload =“javascript:clob_get();”

我在此标题处理后有一个PLSQL。

declare
l_clob clob:= empty_clob();

begin

if apex_collection.collection_exists(p_collection_name=>'CLOB_CONTENT') then
apex_collection.delete_collection(p_collection_name=>'CLOB_CONTENT');
end if;

apex_collection.create_or_truncate_collection(p_collection_name=>'CLOB_CONTENT');
dbms_lob.createtemporary( l_clob, false, dbms_lob.SESSION );

SELECT xslt
INTO l_clob
FROM schematransform
WHERE namn = 'f';

apex_collection.add_member(p_collection_name => 'CLOB_CONTENT',p_clob001 => l_clob);
end;

这很好用。现在,我有一个plsql进程,它将在CLOB和非CLOB字段中输入的详细信息保存到数据库中。但是一旦页面提交,我就会收到“HTTP错误请求”。

任何人都可以解释为什么会发生这种情况,我该如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

这是apex.ajax.clob的代码,取自apex_4_1.js:

/**
 * @namespace = apex.ajax
 */
apex.ajax = {
    /*clob*/
    clob : function (pReturn){
        var that = this;
        this.ajax = new htmldb_Get(null,$x('pFlowId').value,'APXWGT',0);
        this.ajax.addParam('p_widget_name','apex_utility');
        this.ajax.addParam('x04','CLOB_CONTENT');
        this._get = _get;
        this._set = _set;
        this._return = !!pReturn?pReturn:_return;
        return;
        function _get(pValue){
            that.ajax.addParam('x05','GET');
            that.ajax.GetAsync(that._return);
        }
        function _set(pValue){
            that.ajax.addParam('x05','SET');
            that.ajax.AddArrayClob(pValue,1);
            that.ajax.GetAsync(that._return);
        }
        function _return(){
        if(p.readyState == 1){
            }else if(p.readyState == 2){
            }else if(p.readyState == 3){
            }else if(p.readyState == 4){
              return p;
            }else{return false;}
        }
    },

所以,clob设置和获取真的是异步的。您发布的代码提供了一个处理函数,该函数在请求完成时调用(在htmldb_get中完成)。我认为这是一个丑陋的解决方法,但还可以。我们需要操作此函数代码以使我们的提交工作。由于该集是异步的,我们无法确定在该集发生之前不会提交该页面。为防止这种情况,请修改clob_set代码:

function clob_set(pSubmit){
   var clob_ob = new apex.ajax.clob(
      function(){
         var rs = p.readyState
         if(rs == 1||rs == 2||rs == 3){
            $x_Show('AjaxLoading');
         }else if(rs == 4){
             //here the clob has actually been saved, and
             // the ajax call finished
            $s('P5075_RESPONSETEXT',p.responseText);
            $x_Hide('AjaxLoading');

            //pSubmit is a new param
            //use it to check if set has been called for
            //a page submit or not
            if(pSubmit){
               //disable the clob field: it should not be
               //substituted to the session state!!
               $('#P5075_STYLESHEET').prop("disabled", true);
               //actually submit the page. This will submit
               //all fields to session except the disabled ones
               apex.submit('SUBMIT');
            };
         }else{
            return false;
         };
      });

   if(!$v_IsEmpty('P5075_STYLESHEET')){
      clob_ob._set($v('P5075_STYLESHEET'));
   };
};

更改您的提交按钮,并通过动态操作定义其操作。您需要这样做以防止通过默认进程将clob字段替换为会话。创建一个执行javascript的动态操作,使用pSubmit set:

调用clob_set
clob_set(true);

请查看apex.submit api description。还要了解按钮的工作原理:它提交页面并将请求设置为该按钮的名称(如果明确定义,则设置另一个请求值)。

例如,按钮可以命名为“APPLY_CHANGES”并且标签为“更改”。如果您使用内置行处理,这一点很重要。请求值将确定将调用哪个SQL操作,您可以在insert / update / delete复选框旁边的进程详细信息中查看可能的值。

这是一个最有用的漂亮流程图:

clob_set flowchart