Subject Re: [firebird-support] Line Break in SP
Author Helen Borrie
At 08:07 AM 2/08/2004 -0300, you wrote:
>Hi all !
>
>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...

There are several ways, but the easiest is just to hit the Enter key
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