Subject Re: [firebird-support] How To: Write a Store Proc. for the following
Author Helen Borrie
At 10:19 PM 17/04/2004 +1000, I wrote:

>AS
> DECLARE VARIABLE ERRMSG VARCHAR(40) = 'Unknown Flag can't create
> narrations';

needs to be
AS
DECLARE VARIABLE ERRMSG VARCHAR(40) = 'Unknown Flag can''t create
narrations';
i.e. you need to use two apostrophes in "can't" (one acts as an escape
character)

/hb