Linked by Eugenia Loli-Queru on Fri 18th Nov 2005 18:52 UTC, submitted by mariuz
Databases The Firebird Project is pleased to announce the release of Firebird 2.0 Beta 1 kits for immediate download and testing. This version of Firebird 2 is an beta version, meant for field testing only and not for use in production. Please read the Release Notes for more details.
Thread beginning with comment 62061
To view parent comment, click here.
To read all comments associated with this story, please click here.

Member since:

As previously mentioned last time there was a Firebird thread on OSNews... YOU DON"T NEED TEMP TABLES because Firebird and Interbase have a far simple mechanism for achieving the same result.

create procedure test()
returns (avalue integer)
as
begin
for select myvalue from atable where myid > 10 and myid < 100 into :avalue do suspend;
end

Et voila, a temp dataset.

Reply Parent Bookmark Score: 0

Member since:

LOL man!.

Good luck finding a DBA job, heh. If you don't know what's the difference between a temp dataset and a temp table, well ... go and read something ;) .

Reply Parent Bookmark Score: 0