From Firebird Foundation blog

Thu 14 Jan 2010 23:59:59 GMT Gold Sponsorship Renewals Secretary
It is heartening to have received renewals of two more Gold sponsorships for a further year from DRB Systems (U.S.A) and and UVData A/S (Denmark) as the New Year begins. Thanks to Steve Summers and Jan Gaardboe Jensen, respectively.

Wed 06 Jan 2010 11:27:52 GMT FFMember List Restored Secretary
As you probably are aware, we’ve lost the Atkin News server in a series of bad events in previous weeks. Thanks to Philippe Makowski and some of his FLOSS buddies, we have a temporary new home for our members’ forum. All current members (and some not so current!) should have received notifications in your in-boxes.

Older posts here.

Firebird support for Identity Columns in 3.0

An identity column is a column associated with an internal sequence generator and has it value automatically set when omitted in an INSERT statement.

Example:

create table objects (
id integer generated by default as identity primary key,
name varchar(15)
);

insert into objects (name) values (‘Table’);
insert into objects (name) values (‘Book’);
insert into objects (id, name) values (10, ‘Computer’);

select * from objects;

ID NAME
============ ===============
1 Table
2 Book
10 Computer

Upscene Firebird Trace Manager – #beta available

Firebird Trace Manager, Upscene’s new product that exposes the Firebird
2.5 Trace and Audit Services in a user-friendly way, is available as
BETA for immediate download.

– Lite Edition (freely available)
http://www.iblogmanager.com/download/FBTraceManagerLite_setup.zip

– 30 days trial of the Enterprise Edition
http://www.iblogmanager.com/download/FBTraceManagerTrial_setup.zip

Compared to the first public ALPHA version, a few bugs have been fixed,
new features and a product documentation have been added.

1 260 261 262 263 264 492