Passing BLOB/CLOB as parameter to PL/SQL function - Stack Overflow most recent 30 from stackoverflow.com2010-03-22T12:43:55Zhttp://stackoverflow.com/feeds/question/1367830http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1367830/passing-blob-clob-as-parameter-to-pl-sql-function0Passing BLOB/CLOB as parameter to PL/SQL functionUla Krukarhttp://stackoverflow.com/users/1106772009-09-02T13:52:26Z2009-09-02T14:07:55Z
<p>I have this procedure i my package:</p>
<pre>PROCEDURE pr_export_blob(
p_name IN VARCHAR2,
p_blob IN BLOB,
p_part_size IN NUMBER);
</pre>
<p>I would like for parameter <code>p_blob</code> to be either BLOB or CLOB. </p>
<p>When I call this procedure with BLOB parameter, everything is fine. When I call it with CLOB parameter, I get compilation error:</p>
<pre>
PLS-00306: wrong number or types of arguments in call to 'pr_export_blob'
</pre>
<p>Is there a way to write a procedure, that can take either of those types as parameter? Some kind of a superclass maybe?</p>
http://stackoverflow.com/questions/1367830/passing-blob-clob-as-parameter-to-pl-sql-function/1367896#13678961Answer by Colin Pickard for Passing BLOB/CLOB as parameter to PL/SQL functionColin Pickardhttp://stackoverflow.com/users/127442009-09-02T14:02:16Z2009-09-02T14:02:16Z<p>Stupid question first, are you actually changing the procedure in the package to accept a CLOB? A CLOB is not interchangable with a BLOB.</p>
<p><a href="http://forums.oracle.com/forums/thread.jspa?messageID=622482" rel="nofollow">It is possible to convert a CLOB to BLOB</a>:</p>
<pre><code>create or replace procedure CLOB2BLOB (p_clob in out nocopy clob, p_blob in out nocopy blob) is
-- transforming CLOB â BLOB
l_off number default 1;
l_amt number default 4096;
l_offWrite number default 1;
l_amtWrite number;
l_str varchar2(4096 char);
begin
begin
loop
dbms_lob.read ( p_clob, l_amt, l_off, l_str );
l_amtWrite := utl_raw.length ( utl_raw.cast_to_raw( l_str) );
dbms_lob.write( p_blob, l_amtWrite, l_offWrite,
utl_raw.cast_to_raw( l_str ) );
l_offWrite := l_offWrite + l_amtWrite;
l_off := l_off + l_amt;
l_amt := 4096;
end loop;
exception
when no_data_found then
NULL;
end;
end;
</code></pre>
<p>(<a href="http://forums.oracle.com/forums/thread.jspa?messageID=622482" rel="nofollow">Example by Victor on OTN forums</a>).</p>
http://stackoverflow.com/questions/1367830/passing-blob-clob-as-parameter-to-pl-sql-function/1367931#13679313Answer by Chris Gill for Passing BLOB/CLOB as parameter to PL/SQL functionChris Gillhttp://stackoverflow.com/users/1592262009-09-02T14:06:59Z2009-09-02T14:06:59Z<p>Why don't you just overload the procedure to have a CLOB implementation as well</p>
<pre><code>PROCEDURE pr_export_lob(
p_name IN VARCHAR2,
p_blob IN BLOB,
p_part_size IN NUMBER);
PROCEDURE pr_export_lob(
p_name IN VARCHAR2,
p_clob IN CLOB,
p_part_size IN NUMBER);
</code></pre>
<p>You'll then need to work out the logic of what to do with in each procedure. As Colin says, a CLOB is not a BLOB - so I'm not sure what you plan to do with this</p>