Subject Re: [firebird-support] Inserting CR/LF to a string using ISQL
Author Dimitry Sibiryakov
On 24 Mar 2004 at 9:10, diwic2 wrote:

>How do I insert linebreaks into a string with ISQL?
>
>I'm looking for something like this:
>
>insert into foo (test) values ("Hello"+#13#10+"world")

In a script you can use this:

insert into foo (test) values ('Hello
world');

SY, Dimitry Sibiryakov.