[firebird-support] Firebird Parser Problem

2013-04-15 Thread Hans
Hi All. Using Firebird.2.5.2.26539. It may be present in other versions too, I haven't tested that.. CREATE PROCEDURE TEST RETURNS (A INTEGER , B INTEGER ) AS BEGIN A = 1; B = 10; /* SOME COMMENT

Re: [firebird-support] Firebird Parser Problem

2013-04-15 Thread Scott Morgan
On 15/04/13 15:06, Hans wrote: > It may be present in other versions too, I haven't tested that.. ...code snipped... > Returns: > > A = 1 and B = 11 instead of giving some error by the parser. > Can be difficult to find this coding error. That's expected behaviour, comments can cover line-brea

Re: [firebird-support] Firebird Parser Problem

2013-04-15 Thread Virna Constantin
missing  */ > > >CREATE PROCEDURE  TEST >RETURNS (A INTEGER , B INTEGER  ) >AS >BEGIN > >A = 1; >B = 10; > >/* SOME COMMENT MISSING A COMMENT TERMINATOR */  --  here > >A = 2; > >/* ANOTHER COMMENT */ > >B = 11; > >SUSPEND; >END >-

RE: [firebird-support] Firebird Parser Problem

2013-04-15 Thread Hans
pport@yahoogroups.com] On Behalf Of Scott Morgan Sent: Monday, April 15, 2013 8:24 AM To: firebird-support@yahoogroups.com Subject: Re: [firebird-support] Firebird Parser Problem On 15/04/13 15:06, Hans wrote: > It may be present in other versions too, I haven't tested that.. ...code snipped