Subject Re: [firebird-support] Quote Question
Author Ann W. Harrison
Alberto Pesce wrote:

> How can I do INSERT in a table a string that may have a signle quote?
>

Double up the single quote...

insert into Quotations
(quote, author) values (
'Don''t hide your eyes. Plagiarize!',
'Tom Leher');

Regards,


Ann