One problem with APEX is it has issues with dealing with text values of greater than 32k, while there is a fairly simple workaround it does have quite a few pieces and there has to be an easier way to do it.

Well in APEX 3.1 there is now an integrated javascript call to take care of this. This example also shows some of our new namespaced javascript objects and functions.

I've created a working example here.

Setting the CLOB


What's happening in the previous piece of javascript is I'm creating a apex.ajax.clob object. This object only takes one parameter when being initialized which is a function , or pointer to a function, to call when the XMLHTTP object's readyState changes. In that return function ,and for all built in APEX asynchronous AJAX calls, p is the XMLHTTP object.

Once the apex.ajax.clob object is created you just call set method giving it a string ._set(String Value);

It will automatically create a collection in your session CLOB_CONTENT and populate the CLOB001 column.

You can then use that in a page or application level process , usually by calling a doSubmit() and submitting the page.

The p.responseText on successful population of the CLOB will be SUCCESS.

Getting the CLOB


Getting a CLOB is much the same as setting one. Create the apex.ajax.clob object setting the function to call when p.readyState and then call the ._get() method which doesn't take any parameters.

This solution only deals with one clob at a time and the clob is alway put into the CLOB_CONTENT collection, though dealing with multiple clobs is also much easier, more on that later ;). But it is much easier to work with than the old workaround.

I just watched 2001: A Space Odyssey in the last week in HD. If you've never seen or it's been awhile or never seen it in HD do yourself a favor and check it out it's an amazing movie, though it looks like they were a little off on the dates.

26 Comments:

  1. Dan McGhan said...
    Thank you for the post... most helpful! I'll be looking into this more over the weekend.
    Anonymous said...
    Works well with IE but not in Firefox. Is it right or is it a problem from me?
    Thanks.
    Dimitri Gielis said...
    Nice post Carl!
    Carl Backstrom said...
    @jona

    Should work in both, in fact I never even tested it in IE only in FF, and I've checked on both Linux and Win, are you getting an error message?

    @Dimitri

    Thanks, I was helping someone with CLOB entry on forum and remembered oh yeah we have the new helper object.
    Anonymous said...
    Sorry, it works now, i don't know why it didn't a few hours ago...
    Thanks for your very helpful blog!
    Paulo Vale said...
    Hi Carl,
    What do you use in your blog to format the code?

    Thanks
    Matt said...
    I've seen your forum posts on extending the previous workaround for multiple clobs, can you detail how to extend this shortcut for multiple clobs? Also where would I put the call to doSubmit, if I wanted to submit the page (and update non-clob fields)?

    Thanks.
    Unknown said...
    The post is fantastic, thank you.

    Howevere, I have one question, could you let me know how do I gain access to the session CLOB_CONTENT and the populated CLOB001 via code in a procedure or tigger in the DB?

    Thanks

    Daniel
    Unknown said...
    Hi..
    I'm straggling with this for about a week now , can you please tell me what I'm doing wrong .
    Can I email you my app (one page)?

    I keep getting empty p.responseText

    Thanks in advance
    Iris hadar
    Israel antiquities authority
    Unknown said...
    i forgot to give my email
    iris@israntique.org.il
    pay per head call center said...
    Thank you for sharing to us.there are many person searching about that now they will find enough resources by your post.I would like to join your blog anyway so please continue sharing with us
    Fernando said...
    Daniel, this way you get the collection from plsql:

    DECLARE
    l_clob CLOB;
    BEGIN
    SELECT
    clob001 INTO l_clob
    FROM apex_collections
    WHERE collection_name = 'CLOB_CONTENT';
    --
    --do something
    --
    END;
    Bluehost Coupon Code said...
    Good to see with sharing information..
    Unknown said...
    Unknown said...
    Nice Information... Thank you
    Oracle Fusion said...
    Thanks for your Quality information; the product developed by the company is perfect. Thanks for giving such a wonderful article....................
    R12 SCM Training
    oracle procurement said...
    Hi,

    your article is good.In this article contains very informative data
    thanks for sharing having this article.
    oracle fusion procurement online training
    Unknown said...
    I really appreciate information shared above. It’s of great help. If someone want to learn Online (Virtual) instructor lead live training in Oracle Fusion Financials online Training , World Class Virtual Instructor led training on Oracle fusion Financials Online Training. We have industry expert trainer. We provide Training Material and Software Support. calfre has successfully conducted 100000+ trainings in India, USA, UK, Australlia,
    Switzerland, Qatar, Saudi Arabia, Bangladesh, Bahrain and UAE etc.





    For Demo Contact us:

    Contact No.-+91-9666183940, 8886096632
    USA Contact no: +646 491 6833
    Company Website –http://www.calfre.com
    Sandeep SEO said...
    Wow, this blog is very nice I really like your blog and Impressive thank you very much for posting this blog.........Get some more information about Oracle Fusion Related Course can Click here.
    desain rumah said...
    thanks for sharing good article
    its very useful article
    jasa desain rumah
    Rainbow Training Institute said...
    Thank you for sharing your awesome and valuable article this is the best blog for the students they can also learn.

    Workday HCM Online Training

    Rainbow Training Institute said...
    Thanks for providing a useful article containing valuable information. start learning the best online software courses.

    Workday Online Training

    javapro said...
    If your application relies on removed 1.x jQuery APIs, that functionality will no longer work, and you must update the JavaScript to only use jQuery 3.1 APIs.
    shakunthala said...
    aveesha said...
    nice Post thanks for the information, good information & very helpful for others.
    AWS‌ ‌Data‌ ‌Engineering‌ Training
    ravi said...
    thanks for sharing a nice post keep on posting if like read more visit it https://snowflakemasters.in/

Post a Comment