Subject | Re: [firebird-support] Non - printable characters in Stored Procedures |
---|---|
Author | Dimitry Sibiryakov |
Post date | 2003-11-05T10:08:04Z |
On 5 Nov 2003 at 8:08, Tim Ledgerwood wrote:
BEGIN
.....
INSERT INTO MYTABLE (MYNAME, EOL)
VALUES ('string','
');
.....
END
You must run it from script or any other tool which doesn't
eliminate line separators from query text.
SY, Dimitry Sibiryakov.
>How would I write a query or a stored procedure to insert non - printableIf you need CRLF only, I know the way.
>characters in a table?
>How would I write a trigger or stored procedure to insert a CRLF (Ascii 13CREATE PROCEDURE AAA AS
>Ascii 10) into the EOL field?
BEGIN
.....
INSERT INTO MYTABLE (MYNAME, EOL)
VALUES ('string','
');
.....
END
You must run it from script or any other tool which doesn't
eliminate line separators from query text.
SY, Dimitry Sibiryakov.