Subject | Re: [firebird-support] quick question |
---|---|
Author | Helen Borrie |
Post date | 2006-07-17T23:53:29Z |
At 05:39 AM 18/07/2006, you wrote:
./heLen
p.s. Why not use CONTAINING?
>hiMultiple characters in the escape sequence?
>can any of you tell me why i get an 'invalid escape sequence' error
>when trying to execute this procedure:
>
>CREATE PROCEDURE GET_NEXT_20_LI_ASTERM (
> "TERM" varchar(240) character set unicode_fss,
> idin bigint)
>returns (
> id integer)
>as
>begin
> for select first 20 id from dicentries where asterm like '\\\' ||
>:term || '\\\' escape '\\\'
> and id > :idin order by id ascending into :id do
> suspend;
>end
./heLen
p.s. Why not use CONTAINING?