Subject | Re: [firebird-support] SQL Server Migration to Firebird |
---|---|
Author | Milan Babuskov |
Post date | 2010-07-02T15:39:38Z |
sqlsvr wrote:
execute block returning ( somevariable integer ) as
begin
somevariable = 1;
suspend;
end^
Regards,
--
Milan Babuskov
==================================
The easiest way to import XML, CSV
and textual files into Firebird:
http://www.guacosoft.com/xmlwizard
==================================
> In SQL Server, you can do this in the Query Analazyer (which executes a query and displays the results):SELECT 'a' AS column1 FROM RDB$DATABASE;
>
> SELECT 'a' AS column1;
>set term ^ ;
> You can also do this:
> DECLARE @somevariable INT;
> SET @somevariable = 1;
> SELECT @somevariable;
>
> Can someone translate this to Firebird SQL?
execute block returning ( somevariable integer ) as
begin
somevariable = 1;
suspend;
end^
Regards,
--
Milan Babuskov
==================================
The easiest way to import XML, CSV
and textual files into Firebird:
http://www.guacosoft.com/xmlwizard
==================================