Subject | Re: [firebird-support] Line Break in SP |
---|---|
Author | Helen Borrie |
Post date | 2004-08-02T11:22:32Z |
At 08:07 AM 2/08/2004 -0300, you wrote:
between two string-markers, something like this:
declare returnchar char(2) '
'
Then, during the procedure, when you want to add a line break, just
concatenate the variable to the end of the string:
blobstring = blobstring || stringx || returnchar;
/heLen
>Hi all !There are several ways, but the easiest is just to hit the Enter key
>
>I need to make and 3 lines BLOB output in an SP.. How can I make an line
>break into it ??? Like #10+#13 in Pascal...
between two string-markers, something like this:
declare returnchar char(2) '
'
Then, during the procedure, when you want to add a line break, just
concatenate the variable to the end of the string:
blobstring = blobstring || stringx || returnchar;
/heLen