Subject Re: [Firebird-Architect] Suggestion about variable declaration
Author Valdir Marcos
Could it be even simpler, like Pascal style:

current style:
declare variable i integer;
declare variable j integer;
declare variable k integer;
declare variable x VarChar(40);
declare variable y VarChar(40);
declare variable z VarChar(40);

new style:
var
i, j, k integer;
x, y, z VarChar(40);

It would bring even less text to br writtrn

Best Regards,

Valdir Marcos
Sao Paulo - SP - Brazil
www.homeostase.com.br

----- Original Message -----
From: "mohamedbanaouas" <mbana@...>
To: <Firebird-Architect@yahoogroups.com>
Sent: Monday, October 24, 2005 6:15 PM
Subject: [Firebird-Architect] Suggestion about variable declaration


> hi,
> I would like to suggest a feature about variable declaration:
>
> current style:
> declare variable i integer;
> declare variable j integer;
> declare variable k integer;
>
> new style:
> declare variable i,j,k integer;
>
> thanks
>