Subject | Re: [firebird-support] Re: Returns inside a field |
---|---|
Author | Ismael L. Donis García |
Post date | 2009-10-20T13:21:04Z |
1 million thanks
=========
¦¦ ISMAEL ¦¦
=========
----- Mensaje original -----
De: tomkrej
Para: firebird-support@yahoogroups.com
Enviado: martes, 20 de octubre de 2009 01:57
Asunto: [firebird-support] Re: Returns inside a field
Try to use UDF ASCII_CHAR(10)
declaration is
DECLARE EXTERNAL FUNCTION ascii_char
INTEGER
RETURNS CSTRING(1) FREE_IT
ENTRY_POINT 'IB_UDF_ascii_char' MODULE_NAME 'ib_udf';
=========
¦¦ ISMAEL ¦¦
=========
----- Mensaje original -----
De: tomkrej
Para: firebird-support@yahoogroups.com
Enviado: martes, 20 de octubre de 2009 01:57
Asunto: [firebird-support] Re: Returns inside a field
Try to use UDF ASCII_CHAR(10)
declaration is
DECLARE EXTERNAL FUNCTION ascii_char
INTEGER
RETURNS CSTRING(1) FREE_IT
ENTRY_POINT 'IB_UDF_ascii_char' MODULE_NAME 'ib_udf';
> It is possible to accomplish a consultation that gives back a returns intermediate?[Non-text portions of this message have been removed]
>
> Example: select a.name || chr(10) || a.description as name from test a
>