Subject | Re: [firebird-support] Quote Question |
---|---|
Author | Ann W. Harrison |
Post date | 2005-04-22T18:45:32Z |
Alberto Pesce wrote:
insert into Quotations
(quote, author) values (
'Don''t hide your eyes. Plagiarize!',
'Tom Leher');
Regards,
Ann
> 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