| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
|  |  | |||
Home -> Community -> Mailing Lists -> Oracle-L -> how do I concatenate a string in PL/SQL?
I am a PL/SQL newbie and the following gives me errors while executing.
 
a_strng := NULL;
open b_cursor;
loop
    fetch b_cursor into a_ATWRT;
    a_strng := a_ATWRT || a_strng;
    exit when b_cursor%NOTFOUND;
end loop;
close b_cursor;
 
Thanks,
Roger
This e-mail is intended solely for the person or entity to which it is addressed and may contain confidential and/or privileged information. Any review, dissemination, copying, printing or other use of this e-mail by persons or entities other than the addressee is prohibited. If you have received this e-mail in error, please contact the sender immediately and delete the material.
-- http://www.freelists.org/webpage/oracle-lReceived on Wed Feb 08 2006 - 15:11:59 CST
|  |  |