Database Master 1.7 released

Database Master is a powerful database development, management and administration software for the Oracle, SQL Server, MySQL, PostgreSQL, FireBird and SQLite database systems. It allows you to manage databases, tables, views, procedures, indexes, triggers and provides productivity features for rapidly creating and executing SQL queries and connect some major database systems via ODBC and OleDb. Database Master is being imagesed for modern multi-cpu/core architecture.

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 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.

1 31 32 33 34