Firebird Tracker is Restored

Firebird’s Jira Tracker is now restored on the new VM, with data up to 5 December 2009. However, we have lost attachments from the last two years. Missing ticket headers from after Dec 5 will need to be reconstructed from notification messages.

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.

Django meets Firebird

Nice blog post about firebird and django

I found this nice project Django-Firebird that will make Django able to use Firebird as the database backend. The process of switching from MySQL to Firebird is painless, but there are some adjustment needed.

1 157 158 159 160 161 296