Subject | Re: [firebird-support] CR/LF in SQL |
---|---|
Author | Christian Gütter |
Post date | 2004-06-22T12:37:05Z |
Hi Thomas,
I put it into a selectable SP which is supposed
to work as a general utility to concatenate a
CR/LF and two strings. Great :-)
Thank you.
Christian
> CREATE PROCEDURE PRO_CRLF (this works like a charm.
> FIRSTNAME VarChar(20),
> LASTNAME VarChar(40))
> AS
> declare variable fullname varchar(60);
> begin
> fullname = firstname || '
> ' || lastname;
> // ...
> end
> ^^
I put it into a selectable SP which is supposed
to work as a general utility to concatenate a
CR/LF and two strings. Great :-)
Thank you.
Christian