Firebird Conference 2011: Luxembourg, Nov 25-26

The Firebird Project invites all Firebird users and developers to participate in the Firebird Conference 2011, which will take place in Luxembourg, November 25-26, 2011.
Firebird Conference 2011 in Luxembourg, Nov 25-26
The Firebird Conference 2011 will be devoted to a variety of important topics: Firebird SQL language improvements, performance, optimization, database protection and recovery, and many others.
A number of presentations will be done by the Firebird Core team, which will ensure access to information at the best technical levels. The Firebird Conference 2011 will be a place to improve your Firebird development skills and give a chance to ask questions directly to Firebird Core team.

Speakers and Call for papers

Firebird Core Team will be represented by Dmitry Yemanov, Vlad Khorsun, Alex Peshkoff, Philippe Makowski, etc. There are also will be speakers from IBSurgeon and other Firebird-related companies.
If you would like to present at Firebird Conference, please send enquiry to case@firebirdsql.org and specify title and brief description of proposed talk.

Schedule
The exact schedule will be published October 22.

Attendees Fees
Conference fee is EUR 190. It covers 2 days of conference and includes meals and coffee breaks. To pre-order please send email with name and company information to case@firebirdsql.org.

Sponsors and Organization
Sita Software, leading Luxembourg software development company, is the organizer of Firebird Conference 2011.
Sponsors:

  • Sita Software – supplier of ERP, Point Of Sales and accounting solutions for enterprises
  • IBPhoenix – premier source of Firebird support
  • IBSurgeon – recovery and optimization tools for Firebird

For information about sponsor packages and how to become a sponsor please contact case@firebirdsql.org.

Place and accommodation

Conference will take place in Hotel Parc Bellevue, Luxembourg (Officialweb-site, hotel page at booking.com). There are several other hotels in walking distance around, so you can choose where you stay during the conference.

Contact
Please feel free to ask any questions: case@firebirdsql.org
Firebird Conference 2011 Official Page: www.firebirdsql.org/en/firebird-conference-2011/

Firebird 2.5.1 is officially released

Firebird Project is happy to announce general availability of Firebird 2.5.1 This sub-release introduces several bug fixes and many important improvements – for example, performance improvements during a database restore, the ability to write to global temporary tables in read-only databases, etc. For the full list of changes please refer to the Release Notes, Chapter 2 “New in Firebird 2.5”. Firebird 2.5.1 has 100% compatible on-disk structure with Firebird 2.5.0, so it is recommended to migrate to 2.5.1 as soon as possible.

There is a substantial number of bug fixes, this sub-release takes in a few minor improvements and optimizations that missed the initial release. In summary:

  • Significant for MacOSX 10.7 users was a bug that caused attempts to start Superserver and Superclassic to fail. The bug is described in Tracker ticket CORE-3589 and also in the Bug Fixes list for this sub-release.
  • An SQLSTATE context variable is now available in PSQL, parallel to the the context variables GDSCODE and SQLCODE that are used in WHEN blocks to test for error conditions.
  • A couple of improvements were made, that should help performance when global temporary tables (GTTs) are being used:
    • The “undoing”, on rolling back the transaction, of changes made to GTTs that were created with the ON COMMIT DELETE ROWS option was an unnecessary overhead and has been bypassed.
    • Garbage collection in global temporary tables was being delayed unnecessarily by active transactions in other attachments. That bottleneck is gone.
  • A needed optimization in the temporary space manager with regard to small chunk allocations has been implemented.
  • The Lock Manager has been provided with the capability to cancel waiting, avoiding a condition whereby a transaction in WAIT mode could wait interminably for the end of another transaction that could not be achieved by either a DELETE FROM MON$xxx or an fb_cancel_operation request.
  • The query optimizer now estimates the actual record compression ratio, enabling better guesses about the number of stored records in tables.
  • Some minor improvements to the remote interface:
    • Any unused bytes of varchar values in the message buffer are now set to zero.
    • Set the SO_KEEPALIVE option on the client TCP socket
  • The MON$STATEMENT_ID value constant is now kept constant among monitoring snapshots.
  • Ports of this sub-release were done for Linux/HPPA and Linux/alpha platforms.

Firebird Perl DBI driver 0.60 released

New version of DBI driver for Firebird is available at cpan with many changes and bugfixes . Please report any bugs and add them to the github project’s issues list

To download from cpan and install, simply do:

wget http://search.cpan.org/CPAN/authors/id/M/MA/MARIUZ/DBD-Firebird-0.60.tar.gz
tar -zxvf DBD-Firebird-0.60.tar.gz
cd DBD-Firebird-0.60/
perl Makefile.PL
make
make install

optional step

DBI_PASS=masterkey make test

DBD Firebird Perl driver passes all tests and compiles with no warrnings

иконографияThanks to Damyan and Stefan work we have a perl driver that is free of compilation warnings and that passes all tests when you run it with make test from command line.
Here is the commit log with recent changes.

Great work, is nice to see:

All tests successful. Files=33, Tests=842, 52 wallclock secs ( 0.98 usr 0.15 sys + 9.99 cusr 1.37 csys = 12.49 CPU)
Result: PASS

And here is the proof you need to clone the git repository and run in the shell

ISC_PASSWORD=masterkey make test

1 121 122 123 124 125 200