Hi
Apologies if this has asked recently, I am only able to find old discussions and wish to confirm no better approach than what am using.
Have clob data stored in table. Wish for user to download to file on client. In Forms procedure am selecting clob contents into variable. Then looping through clob with dbms_lob.read to chunk up, then writing each chunk to client using client_text_io.put (webutil).
Cannot use webutil_file_transfer.DB_To_Client_with_progress as this only handles blobs.
Current approach works, but not overly elegant in reading clob into Form. Just checking if better options. Alternative is to read clob into database package and have form call database package to get each chunk, but this not very modular.
Thanks