Firebird News

Friday, March 17, 2006

oracle licensing too expensive for oracle community site

from this thread on the orafaq forum:

“There is no way we would be able to raise the money required to buy a commercial Oracle license.”
“I believe the XE edition is a max of 2gig. htmldb would be free for that, but by the time you add htmldb overhead and users, I gotta think this site has way way more data than what is left out of the starting 2gig. … Standard Edition One would be the next option, at 5 grand per proc.”

maybe oracle will toss a free license their way, but this is a great case study on how useless oracle’s free offerings really are. (to contrast, of course, mysql’s free offering is fully-featured, with no artificial limitations. same with other truly free databases like firebird or the open-source versions of postgresql.)


..::::..::::..::::..::::..

Monday, March 06, 2006

Vulcan threading - needs to be fixed


INTRODUCTION

The point of this email is to call attention to what I think is the most critical outstanding element of the Vulcan project - the reliability of the threading and sharing model. This email is, I'm sure, going to devolve in unexpected ways; I'd ask that you read it carefully and think before replying, but please do reply... I believe the "Vulcan" part of the Firebird community very much needs the input of the rest of you all.

Vulcan currently has two conditionally defined threading models. More accurately, two models describing very different levels of sharing of data structures. They have very different qualities, and I believe neither one (in it's current form, at least) is what we ultimately must have.



SHARED_CACHE

If the symbol SHARED_CACHE is defined (the default currently) then Jim's original Vulcan model of fine-grained threading and data sharing is built. This model works generally on the assumption that most things should be shared if possible, and relatively light-weight locking mechanisms are employed to provide serialization/exclusivity when it is recognized that there is a shared data structure that must be made thread-safe.

Key benefits of this model include a more efficient memory footprint since there are very few redundant copies of data structures in memory. This is at the cost of increased synchronization primitive use; a read that does not actually have any conflicts with another thread must act as if a conflict is possible or imminent, and so there is a performance cost to most data access paths to protect the code from potential collision from other threads.



(NO) SHARED_CACHE

If the SHARED_CACHE symbol is not defined, then a much coarser level of sharing is implemented, more akin to the Classic model - each thread has it's own page cache, and so data structures resolved from the page cache are usually thread-private. When cache coherency between copies of the cache must be resolved, the same locking mechanisms are used as in SHARED_CACHE to support code to invalidate pages and force reloads.

Key benefits include a much faster read performance rate since far less data is shared. The cost of this is that write rates have a disproportionately negative impact on performance since updated pages must be invalidated in every connection's copy of the page cache. Worse, the memory foot print increases linearly with the number of connections and the per-connection page cache must therefore be kept relatively small, reducing the effectiveness of the cache.


THE BIG PROBLEM

The point of all this is that the biggest problem with the SHARED_CACHE model is that it does not work reliably under load. We can argue the merits of the test cases for a while, but putting Vulcan under significant load on a real multiprocessor system causes it to fail, and fail relatively quickly. Sometimes the failure is caused by undiscovered critical sections that need additional locking, but sometimes the failure is a deadlock because the relationship of critical sections wasn't completely predicted when the locks were added.

Based on my experience with the embedded usage scenario for Vulcan, I do not believe that SHARED_CACHE works reliably enough to actually use in its current form. Period.



BREAKING IT DOWN

There are quite a few issues that come from this. Here are many of my thoughts, in no specific order. When I say "we" in the following paragraphs, I mean the entire community of Firebird and Vulcan developers, not just my particular company.


1. The (NO)SHARED_CACHE model is not the long-term future, and only works in server environments where very large amounts of memory can be dedicated to the server and/or connection throttling and pooling mechanisms attempt to mitigate the scalability problem. It is a stop-gap that we introduced because we needed Vulcan to work in a timeframe that matches some of our product delivery dates.

2. The SHARED_CACHE model does not work, and is very very hard to debug. Clearly debugging by careful inspection can go a long way, but presumes that the inspector(s) know what they are looking for and/or understand the intended sharing model clearly. It also requires a lot of time and effort. SAS has thus far been unable to make this work ourselves, in part because the underlying lock manager appears to deadlock for reasons we have not been able to solve.

3. Testing multi-threaded code is difficult, and nearly impossible to do without the right hardware. I'll be the first to acknowledge that this is a significant problem in an open source community where many of the participants are either self-funded or trying to balance business objectives against community involvement and may not have the luxury of dedicating significant hardware to this. We need to find a practical way to resolve the test environment issues so that the core development team (at least) can regularly validate changes.

4. We need an agreed-upon test suite to validate the threading and sharing model. SAS uses a set of tests ("threadtest") that can be variably configured to control the number of simultaneous client connections and the work load. I think we've shared this already, but if not we'll be glad to make it available as a candidate test tool. More importantly, the community needs to agree on a test scenario that is considered a minimum requirement for this scenario that must pass before Vulcan can be considered ready for real users.

5. We cannot accept a system that works "for a while" or "for a few users" and then dies in a horrible way, hard to reproduce and putting data at risk. Its fine for a server to have limits, but those limits should be something that can be determined in advance or predicted at runtime so a thoughtful and reasonable response can be given to clients and tools. Declaring a test scenario unreasonable because it is hard to debug is not acceptable. Declaring a test case unreasonable and yet still guaranteeing that the server has a reasonable response is great.

6. There are volumes written about the difficulty of retro-fitting threading on code never written to support it. This is a very hard thing to do at all, and very very very hard to do well. My point is not to be a naysayer about Vulcan, but to make clear that we must understand that threading the Firebird code base is not simple to implement, test, or debug.

7. This is important because planning for the Vulcan/FB integration needs to take into account a realistic view of the state of Vulcan. If we think that Vulcan is nearly done as a 1.0 release (the timeline published during the conference called for a public release around now, if I recall) then a merger really becomes about the divergence in the code bases and reconciling them. If Vulcan really can't perform as it must to be used as the fundamental engine architecture of FB3, then the FB3 merger is about far more than resolving class name changes and updating the optimizer - it is about the guts of Vulcan and whether the sharing model really understands what is shared, when, and why.

8. Related to this has to be some kind of protocol for testing before a push. Threading issues are so hard to debug that they become exponentially harder to track down and repair the further they become buried in the CVS history records. If code is changed that could reasonable be expected to influence the thread-safety of the project, it must be tested against the approved benchmarks regularly and ideally before commit for large changes. It is bad enough when single threaded code is pushed without adequate validation, but it can be the death of a code base when those changes affect concurrency. You can take this any way you like, but too much of Vulcan has already been written without adequate testing. We are compounding the difficulty of retrofitting threading on a monolith by attempting to retrofit quality on the threading. Lots of this is due to the issues above involving availability of test environments and agreement on the requirements, but it's a problem
that will get worse - not better - as more folks get involved in modifying Vulcan.


WHAT DO WE NEED TO DO NEXT?

I don't want to start a flame war, and I sure don't want to retard forward progress on Vulcan. But I work with more than a few smart people, and our team couldn't make SHARED_CACHE work reliably after trying for quite a while, using the best tools and systems we had available. It is my sincere hope that this was largely because we at SAS are still learning the Firebird/Vulcan architecture, and if we had the kind of deep knowledge that many of you have, it would be a workable problem.

My point is that I think this is a big deal, and needs to be tackled before there is too much planning on a FB3 merger that will take away energy from the "does it really work" question. And that question needs independent validation, from parties other than either Jim or me.

The community needs a plan to tackle this, and some resources to do it.

1. A test scenario needs to be developed. There needs to be an assessment about a reasonable test server configuration, in terms of number of processors, CPU power, memory footprint, etc. And we need to understand the test case to be thrown at that server: number of clients, think time versus work time, read/write ratios, degree of sharing of indexes, tables, and databases, etc.

2. There needs to be a definition of a "successful" test case. This should include what must happen during the test run, and what must not happen during the test run.

3. There needs to be a thorough review of the test software itself. We don't want the test driver to contain implicit assumptions or limits that skew the test towards any particular outcome. The test should not be what just one company wants or needs, but should represent the community interest.

4. There needs to be a test configuration provided for an independent assessment, with an agreed upon build of the system and a validation that it meets the requirements set out in item #1 above.

5. The tests need to be published and the community needs to openly discuss what they mean and what influence they will have on FB3 planning and execution.



CONCLUSION

At the end of the day, SAS is just one of the members of this community - and a fledgling one at that. But we have some resources that we can use to help solve these problems, even though we do not have the full knowledge of Firebird internals.

More importantly, we think that the promise of Vulcan is valuable and good, but the current implementation is not getting the attention it needs to fulfill that promise. We can help, but only so far as our knowledge takes us. I believe that the community needs to pick up the issue of Vulcan's scalability and threading and make it the first priority of post-FB2 work. And we need to start with a dispassionate evaluation of what we have in Vulcan today.

I wrestled with whether this was a Firebird developer or architecture issue, but I have settled on the developer list - we have real problems with the real code already implemented, and need a plan of attack on how to fix it that is larger than assigning it to a core developer.

I look to the community for input on what to do next.


--
Tom Cole, Platform R&D, SAS Institute Inc.

sorry for slashdot-ing

My recent article, MySQL's response to Oracle's moves, was Slashdotted. We all know what that means.

Luckily I host in the US, with layeredtech. The site seemed to survive the onslaught, except for a few complaints that may have been about the stylesheets not loading.

http://www.greenman.co.za/b2evolution/blogs/index.php?p=267


..::::..

Smart moves by MySQL AB

Now there seems to be a clear response. MySQL has hired former Firebird developer Jim Starkey and MySQL has a new CTO: Taneli Otala - read Kaj Arnö's interview with Taneli.

The final statement on this interview declares a clear goal: "Definitely. I want to be part of the team building the world's best database!". The times when MySQL targeted itself mainly to drive small and medium web based applications are definitely over!

The fact that MySQL is hireing new developers is just another indication that underlines that MySQL is moving forward towards the "big competitors".

read more on db4free blog

..::::...:::..::::..

Saturday, March 04, 2006

php5 and firebird 1.5 on debian or ubuntu

Darren wrote (in firebird-php list)

Decided to install php5 and firebird 1.5 on Debain
very easy

do the following edit

# vi /etc/apt/sources.list

add these two lines to the file

deb http://people.debian.org/~dexter php5 sarge
deb-src http://people.debian.org/~dexter php5 sarge

save and exit :wq

then do a
# apt-get update

then install all the modules you need
use this command to check whats available
#apt-cache search php5

then install what you want
#apt-get install php5 php5.0-firebird

it installs a few things like apache etc if you havent already got it
installed.

then restart apache
/etc/init.d/apache2 start

you might want to remove php4 beforehand if you have it installed

it seems to work fine big thank you to the guy who maintains this
package! if you are on here. Debian ROCKS.

..::::..::::..::::..::::..::::..

Firebird logo - remineds me of mortalkombat.

Quote of the day " Also I love the logo, remineds me of mortalkombat."
..::::..

Thursday, March 02, 2006

Tuesday, February 28, 2006

TurboCASH on Lazarus/Firebird "proof of concept"

Developers from turboCASH are asking for Lazarus programers (people that program using Lazarus IDE) to set up a small test application to prove that Lazarus can be IDE of choice to port turboCASH to Linux.

there is information on how to adapt existing turboCASH code to run on Lazarus here:

http://www.box.co.za/wiki/index.php/Roadmap_Linux#Lazarus

Also read the original mail from turboCASH developer Philip Coperman:

-----------------------------------

Can anyone help with the following on Linux:

1) Setup a simple "proof of concept" in Lazarus

-------------------------------------------------------------
1) Lazarus and Linux

There are some useful contributions on Getting Lazarus and TurboCASH for Linux going here:

http://www.box.co.za/wiki/index.php/Roadmap_Linux#Lazarus

We have decided to use Firebird (80%) and possibly support MySQL (20%). In the Windows Project we are converting the current Delphi Code to work with Firebird and will add MySQL support if required afterwards. (In my project experience, that becomes unlikely)

I am now more concerned about:

1) How we are going to connect to the Firebird Database (and/or MySQL) - In Delphi we are using ZEOS Lib

2) What are we going to use for a Grid. In Delphi/Windows we use a quality commercial package - Infopower. I have struggled to find and Open Source alternative. Project Jedi seems to offer the best. The Grid is what gives TurboCASH batches and invoices that really friendly Spreadsheet look. How will we do this in Lazarus/Linux?

3) How are we going to write reports - In Delphi Linux we use Free Reports and Reportman. We have a legacy history with Quick Reports.

If you Linux guys (Even the Lazarus on Windows guys) - Could do the following :

i) Download the TurboCASH/Delphi project. Steal whatever you need
ii) "Open " a set of books simply by connecting to the TurboCASH Fro bird Database
iii) Set up any grid you like to edit any record you like in TurboCASH
iv) Write a simple report (take any one of ch windows one)

If we can do the above we can consider Lazarus as a serious proposition.
..::::..::::..::::..::::..

Thursday, February 23, 2006

Wolf , Dolphin and Firebird - Story

Quote of the day
Until then, as Mickos has reportedly said, MySQL is sticking by the premise that trying to kill open-source products by buying companies that make open-source products is like trying to kill a dolphin by drinking the ocean.


..::::..

Wednesday, February 22, 2006

MySQL Makes an Acquisition - Blog of the day

A bit more on a previous post about the acquisition offer Oracle made MySQL recently. The more I think about it, the more I think SAP is the intended target here. Why? Just look at the money involved.
Read Jeremy's Blog
::..:: ::..:: ::..:: ::..:: ::..::

What will be fixed in Firebird v2.0 Release Candidate 1 - Tales from the Changelog


* Fixed unregistered bug
A few types of subqueries are wrongly treated as being variant,
causing performance issues
Contributor(s):
Dmitry Yemanov

* Fixed Beta 2 bug (SF #$1433583)
Unexpected error "key size exceeds implementation restriction" for UTF-8 charset
Contributor(s):
Adriano dos Santos Fernandes

* Fixed unregistered bug
Indices used in explicit plans inside PSQL could be dropped, thus causing restore issues
Contributor(s):
Adriano dos Santos Fernandes

* Fixed unregistered bug
fb_lock_print fails with message:
"the requested operation cannot be performed on a file with a user-mapped section open".
Contributor(s):
Vlad Horsun

* Information API enhancements
1) isc_info_active_transactions_count returns number of active transactions (SF #1315814)
2) isc_transaction_info returns transaction isolation level and options (SF #1089646)
3) isc_info_creation_date returns creation date of the database
See also:
/doc/sql.extensions/README.isc_info_xxx
Contributor(s):
Vlad Horsun

* Fixed unregistered bug
Transaction ID cannot silently (and dangerously) overflow anymore (the limit is still 231)
Contributor(s):
Vlad Horsun

* Fixed unregistered bug
Read committed transactions block garbage collection
Contributor(s):
Vlad Horsun

* Fixed unregistered bug
ALL predicate may return wrong results
Contributor(s):
Dmitry Yemanov

* Fixed unregistered bug
Thread safety issues in datetime functions of the FBUDF library
Contributor(s):
Claudio Valderrama

* Build improvement
FBUDF library no longer depends on FBCLIENT
Contributor(s):
Claudio Valderrama

* Fixed unregistered bug
Permissions are not checked for view columns
Contributor(s):
Dmitry Yemanov

* Fixed unregistered bug
Server crashes if positioned UPDATE/DELETE is executed via DSQL
and it references a cursor which is already released.
Contributor(s):
Vlad Horsun

* Fixed SF bug #1404157
DFW is not ready for RECREATE TABLE/VIEW
Contributor(s):
Dmitry Yemanov

* Fixed unregistered bug
Restored the code which replaces ROLLBACK with COMMIT if a transaction
has not modified any data
Contributor(s):
Dmitry Yemanov

* Fixed unregistered bug
ROW_COUNT is cleared after SUSPEND execution
Contributor(s):
Dmitry Yemanov

* Fixed SF bug #1408079
Parser does not validate string literal markers
Contributor(s):
Claudio Valderrama

* Fixed Beta 2 bug
Incorrect ambiguity error raised for quantified predicates (ANY/ALL/IN)
Contributor(s):
Arno Brinkman

* Fixed unregistered bugs
1) Wrong statistics if relation\index data is longer than 232 bytes length
2) Wrong statistics: average index key length rounded to integer value
Contributor(s):
Vlad Horsun

* Fixed unregistered bug
Attachments with isc_dpb_no_garbage_collect option force the sweep
Contributor(s):
Vlad Horsun

* Fixed Beta 2 bug
Wrong string length calculated for UNICODE_FSS system domains
in users views and tables
Contributor(s):
Adriano dos Santos Fernandes
Dmitry Yemanov

* Fixed Beta 2 bug
Incorrectly stored source for CURRENT_TIME\CURRENT_TIMESTAMP
in procedure parameters default values
Contributor(s):
Vlad Horsun

..::::..

Tuesday, February 21, 2006

World Domination with Firebird - Mastering Firebird Book

“The Firebird Book” is now avalable in Portuguese, "Dominando Firebird: Uma Referência Para Desenvolvedores de Bancos de Dados".

Dominando Firebird

Brazilian’s version of Helen Borrie’s book was released today by LCM publisher, the same publisher of “Firebird Essencial“. In some weeks, LCM will release the “IB Expert” book in portuguese and a new book about Firebird Security Tips (by Luiz Paulo de O. Santos).

Helen’s book title was changed to “Dominando Firebird”, something like “Mastering Firebird”.



..::::..

OSDB market soap opera update (mysql and firebird)

A quick pointer to the news announcement that mysql has purchased a company called netfrastructure inc, which happens to employ Jim Starkey (one of the founders of InterBase, an ancestor to Firebird) and perhaps more importantly Ann Harrison, one of th…
..::::..::::..::::..

Monday, February 20, 2006

What has happened to the Open Source Database Consortium?

A while ago, people from the major Open Source
database systems have met to form the Open Source Database Consortium - that was in October 2005.

OK,
that's not that long ago, but I hope that the ambitions to co-operate
aren't over again. It was told that a website will be created at www.osdbconsortium.org.
There's nothing to see except a "Just a web page" note. I haven't heard
any news about this since October - I believe, it would be nice if
MySQL, PostgreSQL, Firebird etc. could do some things together. That
would certainly be more welcoming than any deal with a proprietary
database vendor.

Read more on :Markus Popp's blog
..::::..::::..::::..

Oracle - they are just anti RDBMS competition - quote of the day

But on the whole Oracle isn't anti-open-source (look at what they are doing with linux), they are just anti RDBMS competition, and especially anti commercial RDBMS competition (and especially anti anti against RDBMS and SAP competition).

From Robert Treat blog via planetpostgresql.org

..::::..::::..::::..

MySQL's response to Oracle's moves

MySQL have responded in the best way they can by Acquiring Netfrastructure, Inc, and as part of the agreement Jim Starkey will be working fulltime for MySQL AB. Jim Starkey is the father of Interbase (which forked into Firebird) as well as the inventor of the term blob.



Digg it
..::::..::::..::::..

Saturday, February 18, 2006

the wolf is gone to mysql - Jim Starkey joined MySQL AB

Jim Starkey, the original creator
of InterBase which became Firebird, just made it publicly known that he
now works for MySQL AB.


My company, Netfrastructure, Inc., has been acquired by MySQL, AB. As

part of the agreement, I will be working full time for MySQL. I expect

to lurk on the architecture list from time to time and may contribute

the occasional wolf-o-gram, but I will not be taking an active part in

Firebird development. Although Ann will work for MySQL, part time,

translating from wolf to English, she will continue to be active in the


Firebird project.


My decision to join MySQL has almost nothing to do with Firebird and

everything to do with Netfrastructure. The Netfrastructure platform

represents what I feel about contemporary computing hardware and future

application requirements, and has been the center of my technical heart

and soul for six year. Some aspects of Netfrastructure technology have

already been contributed to the Vulcan project, but Firebird and

Netfrastructure are architecturally incompatible. An attempt to

integrate the technologies would be unlikely to meet the goals of either


project.


MySQL and Firebird have never seen each other as competitors and I doubt

this will change in the future. The projects have different open source

philosophies, different technologies, different customer bases, and

different sweet spots. The ideas behind the two projects are, happily,

public and available to all. If MySQL and Firebird compete, it is only

competition in offering the best possible support to their respective

customers.


I am pleased to have had the opportunity to finish the Vulcan project.


The combination of Vulcan SMP and architecture combined the rich feature

set of Firebird 2 will make a solid release and a superb platform for

future development.


I wish the Firebird project all the best in years to come. And if you

need an opinion, please feel free to call.




Permalink
| Leave your comment
..::::..::::..

Friday, February 17, 2006

Backup your del.icio.us bookmarks in Firebird

"I'm a fan of del.icio.us because it allows me to seamlessly access my bookmars from whichever computer I am currently logged in to. A comment in a posting on this blog some time ago, brought my attention to Scuttle, an Open Source version of del.icio.us written in PHP. Scuttle is currently available in version 0.6.0.

The underlying database into which scuttle stores users and bookmarks, can be any of MySQL, Oracle, Postgres, SqLite, DB2, Firebird, and a couple others"

Read more on Jan-Piet's blog
http://blog.fupps.com/2006/02/16/delicious-scuttle/

..::::..

Wednesday, February 15, 2006

Why Pay for a Database? - Why pay for sex when you can get it free?

As open-source databases have grown in popularity among large enterprises and small and midsize businesses alike, many CIOs have taken a closer look at the savings associated with switching to these noncommercial alternatives.

Despite the attractive prices that are drawing more CIOs to open-source applications such as MySQL and PostgreSQL, traditional software Relevant Products/Services from Insight vendors have not exactly thrown in the towel. Some — including Oracle, Microsoft, and IBM — are fighting back by releasing free, scaled-down versions of their fully featured database products in the hopes that customers might one day upgrade.

But the question remains: Does it make good business sense to pay for a commercial database product when well-established, open-source versions pose enticing alternatives? A growing migration away from commercial software suggests that, for many customers, it does not.

http://business.newsfactor.com/story.xhtml?story_id=41585

..::::..::::..::::..::::..::::..::::..

Open source database ‘years away from being a serious contender’

First they ignore you, then they ridicule you, then they fight you,
then you win.
by Mahatma Gandhi.

http://xrl.us/j2jd (Link to www.computerweekly.com)


..::::..::::..::::..
::::..::::..::::..

Tuesday, February 14, 2006

Firebird and SQL 2003 standard Conformance

This document outlines how much Firebird conforms to the current SQL standard.[2003] Please note that the following information is not a full statement of conformance, but just information for those interested in the subject.

What is your main language used with FB?

Seems that 80% of firebird users are  Delphi users
if i look at this pool votes (the one on the right sidebar)
http://www.firebirdnews.org/
In a way is no shock to me - i started working as an interbase / Delphi
programmer
I think Lazarus+firebird package needs more attention (better
documentation+ more articles etc)

..::::..::::..::::..::::..::::..::::..::::..::::..::::..::::..

Porting the EMPLOYEE database from Firebird 2.0 to MySQL 5.1 part 7&8

Pabloj (moderator at devshed.com forums) wrote the last steps from
it's porting/comparative guide
Part 7 - Part8
..::::..::::..::::..

Monday, February 13, 2006

Firebird and FireBase in “Anuario InfoCorporate 2006″

InfoCorporate 2006

Firebird and FireBase (Brazilian Firebird dedicated portal) is mentioned in the Database section of the 2006 edition of “Anuário InfoCorporate“. Some months ago, a journalist from InfoCorporate called me by phone and made a small interview about Open Source databases and Firebird to be used in the publication.

The publication is a major source of indexed information to make the work of finding the best services/consulting providers of a specific area easier.

An excerpt of the article be be viewed below (portuguese only):


..::::..::::..

SQL Manager 2005 for InterBase/Firebird released!

Written by EMS Software Development
Friday, 10 February 2006
EMS Software Development Company has released SQL Manager 2005 for InterBase/Firebird - the new major version of the powerful InterBase and Firebird administration and development tool!

SQL Manager 2005 is compatible with any Firebird version up to 2.0 and InterBase version up to 7.5 and supports all of the latest features. It offers plenty of powerful tools for experienced users such as Visual Database Designer, Visual Query Builder and Stored Procedure Debugger to satisfy all their needs. EMS Software Development Company has released SQL Manager 2005 for InterBase/Firebird - the new major version of the powerful InterBase and Firebird administration and development tool!


You can learn more about SQL Manager 2005 for InterBase/Firebird at: http://www.sqlmanager.net/products/ibfb/manager




You can download SQL Manager 2005 for InterBase/Firebird at: http://www.sqlmanager.net/products/ibfb/manager/download

..::::..

Firebird 2 beta 2 released

The Firebird Project has released the second Firebird 2.0 beta. Over the weekend, kits for Win32, Linux x86 (including NPTL builds for Superserver) and Linux x64 are being released for testing. Mirrors are slowly filling up; slower downloads from the pre-release area are also available temporarily but please try the main (mirror) links first.

You can download it here.

Thanks for Jiri Cincura for leting us know about this.


..::::..::::..::::..

Sunday, February 12, 2006

firebird 1.5.3 gentoo package updated

Changed inetd USE flag to xinetd, bug #121886. Added doc USE flag handling useful docs from firebird website
http://packages.gentoo.org/ebuilds/?firebird-1.5.3-r1
..::::..::::..::::..

Friday, February 10, 2006

Firebird Powered Web Forum dnfBB

dnfBB is a n-Tier, fast and lightweight .Net-powered discussion board written in C#. With native support for multiple forums within the same database structure. Initially designed to work with Firebird and MySQL, support for other databases is planned.
http://sourceforge.net/projects/dnfbb

..::::..::::..::::..::::..::::..::::..::::..::::..

Killing Microsoft Exchange with Firebird+Mailtraq

ServerWatch: Mailtraq Keeps Budgets, Features on Track "A budget friendly alternative to Microsoft Exchange" - uses Firebird.
..::..::....::..::..

Status of the Firebird Tutorial for .NET

At the beginning of January I posted a Request for Ideas: Firebird in .NET Tutorial. First of all, thanks to all who contributed their ideas.

I'm currently working hard on the tutorial. The original idea was to write just a quick introduction but it seems there is a lot to tell... The weakest point of Firebird seems to be the lack of freely available documentation - so I decided to invest a little bit more time in the tutorial.

..::::..::::..::::..::::..

Thursday, February 09, 2006

Sequoia 2.6: A Transparent Middleware Solution with firebird support

Sequoia is a transparent middleware solution for clustering, load balancing and failover services for any database. The database is distributed and replicated among several nodes and Sequonia balances the queries among nodes. It is also known to handle node failures and support for checkpointing and hot recovery. It was formerly known as the clustered JDBC project and provides high availability and performance scalability for databases.

More about it on jax magazine


..::::..::::..::::..::::..::::..::::..
::::..::::..::::..

Lazarus 0.9.12 released

The Lazarus team is glad to announce the 0.9.12 release. This release is based on fpc 2.0.2 and the binary packages now contain many standard packages:

This release can be downloaded from the sourceforge download page:
http://sourceforge.net/project/showfiles.php?group_id=89339

Detailed list of changes

Lazarus supports Firebird with SQLdb package that comes with the IDE
or third party components.



..::::..::::..::::..

Playing with the Firebird Database - Blog of the day

In my last blog entry reguarding the rumored SunDB I immediately discounted the Firebird Database as a contender. In the comments posted to that entry it was suggested that Firebird shouldn't be so quickly discarded and may even be a "diamond in the rough". Well, if I'm wrong I'm willing to explore it and admit that I'm wrong if thats the case, afterall, what if Firebird really that great? I certainly don't want to miss out on a good thing. So thanks to Gentoo I quickly emerged Firebird 1.5.2 and started playing.

..::::..

Quote of the day - I tried to make Interbase as simple and fast as possible : no tuning , no configuration control , no overrides

It's from 2000 and from Firebird Architect list
"What I'm trying to do is establish a cultural mindset for Interbase
development, soon to be a world wide effort, that easy to use means
intelligence in the system, not thousands of individual features.

Open Source has produced some very high quality software but often

at a cost of great obscurity. Samba, for examples, emulates what
on Windows takes three mouse clicks, but requires 140 pages of
documentation to read and understand before installation. Of
the "info" documentation reader with so many easy to remember
commands that they ran out upper case letters, lower case letters,
control-letters that they had to resort to keyboard chords.

I tried to make Interbase as simple and fast as possible -- no
tuning (other than indexes), no configuration control (undone
by Sys-V shared memory!), no overrides. Where tuning was
traditionally required, I found alternative algorithms that
we insensitive to tuning. Although memory sizes now make
the feature unnecessary, the optimizer computers the number of
page buffers required to efficiently perform a query and
warns the cache manager to find more memory.

I want Interbase developed by people who believe that smart,
small, and simple is good. I want it used by people with
a problem to solve but who don't want to be database experts.


Jim Starkey"

..::::..

Wednesday, February 08, 2006

Speed Comparison - Sqlite Posgtresql Mysql and Firebird

Benchmarks with Firebird 1.5.2 and the rest of the pack , Draw your own conclusions

http://www.sqlite.org/cvstrac/wiki?p=SpeedComparison

Spoted on Tim Anderson's Tech writing blog


..::::..::..::..::..

New Evans Data Survey

Evans Data: Today we have posted the 2006 Linux/Open Source Software survey. The survey is open to ALL panelists familiar with Linux or open source software.

Firebird is mentioned in two questions:

Which Open Source databases do you use most often?

What database are you using on the platform for which MOST of your applications are targeted?

Don’t forget to vote for Firebird!


..::::..

ANN: CopyCat Replication Suite version 1.03.0

Microtec is pleased to announce a new version of CopyCat, our Delphi /
C++Builder component set for database replication.

CopyCat can be used for integrating replication functionality into your
applications, or for making your own customized replicators, enabling
off-site database work, asynchronous work over slow connections,
automatic live backup, etc.

For information about CopyCat, see here

Changes in version 1.03.0:


..::::..

Firebird 1.5.3 and Trustix linux

Here are the experiences on Trustix 3 , and maybe someone will contribute the firebrd rpm to trustix too. (with dependencies solved)
..::::..::..::..

Firebird 1.5.3 debian packages are available for testing

I've done preparing Firebird 1.5.3 packages.

deb[-src] ftp://shrek.creditreform.bg/public sid main

All feedback is warmly welcome. If no problems are found, I'll proceed with
upload to the archive.

Ah, also there you can find packages for flamerobin.

Damyan Ivanov
All you need to do is to add the above repository to your /etc/apt/sources.list
and then apt-get update ; apt-cache search firebird
then install what you need (classic or super server)

..::::..::::..::::..

Tuesday, February 07, 2006

OSS databases making inroads - Blog of the day

Here is a good link in businessweek on how OSS databases are horning in on

the database market.



I personally think that the majority of database users can do there work

with either Postgrsql, MySql or others like the Borland interbase now know

as Firebird or even Computer Associates Ingres which was recently made

opensource. Really do most company really need all those extra features or

are they just selling feature like Picture in picture was on your new TV

which you never use now. ;)


Here is the link for you to check out:


http://www.businessweek.com/technology/content/feb2006/tc20060206_918648.htm
Best regards,
-Richard Houston
..::::..::::..::::..::::..::::..

Open Source vs. the Database Vendors - on slashdot

"BusinessWeek has another spread on open source this week. Among them is an article about open source vs. the database vendors
which focused on how businesses are looking to save money with open
source (rather than using the source to innovate). From the article:
"The databases work fine, but as data volume grows, so do the checks to
Oracle, IBM, or Microsoft. Many users aren't clamoring for more
features, and some don't even use the bells and whistles they already
paid for. They would happily trade some to get their hands on the
source code and a better deal."

Original source for news slashdot.org

..::::..::::..::::..::::..::::..

Monday, February 06, 2006

FirebirdClient 2.0 Beta 4 released.

FirebirdClient 2.0 Beta 4 for Visual Studio 2005 & Microsoft.NET 2.0,
the ADO.NET Data Provider for Firebird, is available for download.

Download information can be found here:

http://www.firebirdsql.org/index.php?op=files&id=netprovider


· Beta 4 ( 2006-02-03 ) ·

(Please read the Changelog for details)


Bug Fixes:

- Fixed Foreign Keys schemas.

- Fixed problem with the COLUMN_SIZE column in the FbViewColumns schema.

- Bug fix in FbPoolManager when trying to return back to the pool a
connection.

- Fixed DataTypes schema in the FbMetaData.xml file.

New Features:

- [DDEX] Foreign keys should be now automaticalled added to DataSets
at design time when
dropping tables from the Server Explorer.

- Added correct support for the new .net 2.0
DbParameter.SourceColumnNullMapping property (Alexander V. Leshkin)

- Initial implementation of the new extended support for
char/varchar fields
with OCTETS character set.

Changes:

- Added RemoteEventId property to FbRemoteEvent class.




--
Best regards

Carlos Guzmán Álvarez
Vigo-Spain

..::::..::::..::::..::::..

Interesting Project Metrics

I've been wonder for some about about metrics to evaluate the relative
architectural cleanliness of various database implementations.  To that
end, I wrote a simple program that eat Visual Studio 7 projects files
and analyzes the source files.  Here are the results:






























































































  Nfs Engine Vulcan Firebird 2 MySQL Server
Total Modules 429 633 232 123
Total Lines 63432 227814 126274 214356
Code Modules 206 218 70 99
Header Modules 221 394 162 15
Preprocessed Modules 0 16 0 0
Other Modules 2 5 0 9
Number Functions 2839 4706 1633 4960
Average Arguments 5.00 8.65 13.08 7.58
Average FunctionLines 14.86 32.46 55.95 31.70
Average Code Lines 11.80 21.20 37.12 26.90
Average Internal Comments 0.94 6.10 11.92 2.59
Average Internal WhiteSpace 2.12 5.16 6.92 2.21

The analysis program doesn't try to follow conditional compilation, so
everything is included whether active or not.

The Netfrastructure engine is roughly equivalent in functionality to
Firebird.  The Netfrastructure numbers, however, are for the database
engine only, excluding the Java Virtual Machine and template engine. 
Since the trigger and procedure language in Netfrastructure are Java,
this isn't a strict apples to apples comparison.   On the other hand,
the Netfrastructure engine includes the remote server, which Vulcan
does not.
The Vulcan numbers are taken from the engine provider current code
base.  A small number of modules that, due to conditional compilation,
couldn't make it through the analysis program were omitted. 
Post-processed modules were also omitted.  Since Vulcan contains quite
of bit of archival, disabled Firebird code, its numbers are slightly
bloated.
The Firebird number are taken from "engine" msvc7 project.  Since
Firebird 2 doesn't use custom development steps, the preprocessed
modules aren't included (the project hasn't been built, so the
corresponding post-processed modules are not included either.  I don't
actually know what is the Firebird 2 engine build, but I assume it
doesn't include DSQL and possible other common stuff.

The MySQL numbers are from their Windows source kit.  I believe that
they also use static libraries for cross component modules, so I
suspect this is less than the full server.  But it does give a feeling.

I think the two most interesting sets of number are the average number
of arguments per function and the average number of code lines per
function (code lines exclude comments and white space).  It is most
interesting that in each case, Vulcan falls halfway between
Netfrastructure and Firebird 2.  The average number of arguments is a
good metric of the quality of a design.  Bad (or in this case eroded)
designs have to pass everything but the kitchen sink, and sometimes
that.  The Firebird 2 numbers are particularly scary because many
additional parameters are passed covertly through thread data.  The
average code lines per function is a good metric of modularity -- the
degree to which common code is cleanly factored out.

The comment related metrics are substantially misleading since they are
computed relative to number of functions rather than code lines --
fewer code lines will always mean fewer comments.  Even so, it is clear
that Firebird has something to teach me and MySQL about internal
commenting.

Both the ProjectAnalyst and ProjectsSummary projects are checked into
the Vulcan tree under src.  If you want to play or analyze Firebird 1.0
or 1.5, I'd like to see the results.  You may also want to add more
metrics.  ProjectAnalyst generates xml (sans header) summary files,
ProjectsSummary turns a set of xml summary into an HTML table.
-- 

Jim Starkey
Netfrastructure, Inc.
978 526-1376

Wednesday, February 01, 2006

Porting the EMPLOYEE database from Firebird 2.0 to MySQL 5.1 in steps:1-2-3-4

Hi, I've decided to make an in depth test of MySQL's new functionalities by porting Firebird's EMPLOYEE.FDB database to MySQL 5.1.5, here is what I found, I hope it will be useful for people porting apps from MySQL to Firebird and vice-versa.
http://pabloj.blogspot.com/2006/01/porting-employee-database-from.html
..::::..::::..

IBM Introduces a Free (as in Beer) Version of DB2

This week IBM became the latest proprietary database vendor to add a free offering to their lineup, according to ZDNet:
Source: http://news.zdnet.com/2100-3513_22-6032676.html

It would be difficult to estimate the balance between appealing to developers and the influence of Open Source databases such as MySQL, but I would tend to believe that competetion from Postgres, Firebird, MySQL, et al. to be a significant factor in the decision to release free versions of proprietary databases.

Source for this news/blog of the day
http://www.openwin.org/mike/index.php/archives/2006/01/ibm-introduces-a-free-as-in-beer-version-of-db2/
..::::..::::..::::..::::..::::..::::..

SR UDF Library version (2.0.1.0)

A user defined function library (160 UDFs) for InterBase and Firebird on the Windows platform. This version of SR UDF Library supports the following standard routins: Math, File, DateTime, String, Regional in addition to Conversion routins for converting different measurement units.

http://www.srmaster.com
..::::..

IBExpert v2006.01.29 now available

HK Software have announced the immediate availability of a new Version of IBExpert (2006.01.29).

Visit www.ibexpert.com to download this version
..::::..

Advanced Data Generator v1.6

Upscene productions have announced the availability of a new version of their Advanced Data Generator V1.6.0

..::::..

Tuesday, January 31, 2006

Security Hot Issue for Open-Source Database Developers

Open-source database deployments rose dramatically in the last half of 2005, and as one might expect, as more IT pros get acquainted with these non-proprietary systems, security is a chief concern. Open-source database makers like MySQL and PostgreSQL [ED: and Firebird] simply must answer some of the most prevalent security-related questions in order to win more market share.

One of those questions is, with recent headlines suggesting customer data stored on organizational databases is at risk, should those who opt for open-source database applications be worried? Not according to data suggesting proprietary database software is breached more often. But data alone is not enough. What IT executives really want to know is what specific technological security precautions open-source DB developers need to take.

"We continue to see the maturation of open-source databases reflected by the continually increasing levels of adoption," said John Andrews, President, Evans Data. "In a number of our ratings categories, we're seeing open-source databases meeting or exceeding proprietary databases."

Read this full article at TechNewsWorld
..::::..::::..::::..::::..::::..::::..

New list: firebird-job-board

Hello all,

A new list has been started on Yahoogroups - a job board for devs
with Firebird skills and for employers looking for them. :-)

It's a pretty tightly moderated list.

You can look it up from the Lists and News Groups page of our main
website, or go straight there if you like.
http://www.yahoogroups.com/community/firebird-job-board

All you'll see in the archives right now is a couple of messages
posted by Calin Pirtea, who's helping with the
moderation. (Actually, you won't see the archives at all if you're
not a member...)

Feel free to link to the list from your own websites. It all helps
for getting us "out there".

Helen

..::::..

Thursday, January 26, 2006

Firebird Embeddable Database for .NET - Blog of the day

"An article about dotLucene at CodeProject suggests FireBird as a DBMS for .NET apps with comparable and even better capabilities (for some features) than the commercial counterparts."

Read more on his blog
..::::..::::..::::..

Wednesday, January 25, 2006

Whats New in Firebird 1.5.3

Spoted the list of changes on fbtalk also you can find them in release notes
Whats New

(1.5.3) Two ISQL Improvements
C. Valderrama, D. Ivanov
1. Command line switch -b to bail out on error when used in non-interactive mode.
2. Return an error code to the operating system from command-line isql


(1.5.3) Make Old Column Naming Convention available
Paul Reeves
Added OldColumnNaming parameter to firebird.conf to allow users to revert to pre-V1.5 column
naming in Select expressions.


(1.5.3) Security diagnostics added
Alex Peshkoff
Attempts to send signals via a missing gds_relay may be an exploit attempt. They are now logged.


(1.5.3) Closed an Endemic Security Hole
Alex Peshkoff
Previously, a user could log into a server on a Unix/Linux host remotely, using a Linux UID and password
accepted on that host. It was recognised as a security hole and fixed in Firebird 2 development.
It is an endemic security bug in previous versions and InterBase. The security fix has been back-ported
to Firebird 1.5.3: a UID received from the client side is now not trusted.

..::::..

Firebird 1.5.3 Released

The Firebird Project is pleased to announce the Firebird 1.5.3 release, representing a year of bug fixes and minor enhancements, many back-ported from the Firebird 2.0 developments. Kits are available for Windows and Linux.

..::::..

Tuesday, January 24, 2006

Firebird ODBC Driver V2.0 (Beta V2.00.000...000000000000000.00126) is available for download.

A new version of the Firebird Open Source ODBC Driver V2.0 (Beta V2.00.00.00126) is available for download.
..::::..::::..::::..::::..

How Relevant for firbird project is the Homeland Security Grant?

How it will work ,Shows how Coverity worked with linux kernel developers in the past sending them patches

"For now, Coverity plans to publish the defect reports on a semi-private Web site so that any developer associated with a particular open source project can examine the list, determine if something actually needs to be fixed, and then create a fix and submit it to the project lead. This is currently the model used by Coverity for the defects they published for the Linux kernel."

http://www.linuxplanet.com/linuxplanet/reports/6146/1/
..::::..::::..::::..

how to work with fishes (BLOBS) in firebird

Devrace have published an article entitled "How to work with Blobs using FIBPlus" written by Sergey Vostrikov, translated by Marina Novikova.

Read more | Post comment

..::::..

Monday, January 23, 2006

Firebird User Community Map - win an Cuckoo clock

There is now a Frappr map for Firebird. Go ahead and register yourself. The 1,000th registrant might be honoured with a Cuckoo clock.

Read more | Post comment
..::::..

InstantObjects 2.0 beta 2 released

On behalf of the InstantObjects team, I am proud to announce the
release of the second beta of the long-awaited version 2 of
InstantObjects.

Download URL:

http://prdownloads.sourceforge.net/instantobjects/InstantObjects-2.0.beta2-src.zip?download

Feedback:

Please test this release and report back any problems by means of our
newsgroups and trackers.

Ciao
--
Nando Dessena

..::::..

Friday, January 13, 2006

Thursday, January 12, 2006

Latest number of DB FreeMagazine (#007) is out

The lastest number of DB FreeMagazine (#7) brings an article about how to configure Wine on linux to be able to run IBExpert and other Delphi applications.
How to backup Mysql databases using Replication ,
Installing Oracle10 under Slackware, Firebird Conference 2005,
Firebird usage statistics (opinion poll)
Magazine is free, but is in portuguese. Some work is being done to have a version of the article in english.
..::::..::..::..::..::..::..::..

All you didn't want to know about Firebird's Unicode

You can now download the slides from Stefan Heymann's talk "What Developers Should Know about Character Sets, Unicode etc.".
It was presented at Firebird Conference 2005 .

Dmitri Kovalenko, LCPI wrote about unicode in September issue of The Firebird Developer Magazine:
Working with UNICODE in InterBase/Firebird

Related to unicode is Joel Spolsky's article The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Character Sets (No Excuses!)


..::::...::::...::::..

Firebird ADO.NET Data Provider 2.0 Beta 3 released

The Firebird ADO.NET Data Provider 2.0 Beta 3 for Microsoft.NET 2.0 is
available for download.

Download information can be found here:

http://www.firebirdsql.org/index.php?op=files&id=netprovider

(Please read the Changelog for details)

Bug Fixes:

- Fixed problem with the FbDataAdapter design time support.

- Fixed TableAdapter integration in Visual Studio 2005 now the
tableadapters should have select, insert, update and delete commands
when requested.

- Fixed bugs in Indexes and Index columns schemas.


..::::....::::....::::....::::..

Wednesday, January 11, 2006

Homeland Security helps secure Firebird

I saw firebird in the list of targets

“Through its Science and Technology Directorate, the department has
given $1.24 million in funding to Stanford University, Coverity and
Symantec to hunt for security bugs in open-source software and to
improve Coverity’s commercial tool for source code analysis,
representatives for the three grant recipients told CNET News.com.”

http://news.com.com/Homeland+Security+helps+secure+open-source+code/2100-1002_3-6025579.html?tag=nefd.lede

..::::..::..

Monday, January 09, 2006

Firebird News HQ

Hello!

I always claimed about the lack of an "oficial" HQ for news related
to Firebird. Until now, people needed to dig into several sites to get up
to date with the "Firebird World".

For this reason, I created www.firebirdnews.org

The site is mainly a blog and will be driven by the community. I mean,
registered people who wants to be authors for the site will be allowed
to post new items with no moderation and full speed, ie: 1-LogIn, 2-Write It,
3-Publish it, and it will be online! No delays, no authorization
requests!

In other words: The site needs you! Being an author doesn't
means that you will have to write documents with dozen pages. It means
that you will have the right to post to the site. Actually the posts
are not big, since usually it will just give the user an introduction
to something hosted in another site.

Please enter the above URL and read the "About this site" and "Author
rules", and if you agree (why not?), please register yourself. As
soon as I see your registration, you will be promoted to Author role
and can begin posting new items.

For the RSS entusiasts, the site already offers possibility to track
the new posts and comments using a RSS reader.

[]s

Carlos (Membro do TeamFB - FireBase)
WarmBoot Informatica - http://www.warmboot.com.br
FireBase - http://www.FireBase.com.br


..::::..

Friday, January 06, 2006

The Firebird ADO .NET Data Provider V2.0 Beta 2

The Firebird ADO .NET Data Provider V2.0 Beta 2 for Microsoft .NET 2.0 is available for download.
..::::....::::....::::....::::..

Daffodil CRM 1.5 includes Firebird support

Daffodil Software have broadened the number of database choices for their CRM product. Previously limited to DaffodilDB, the CRM product now also supports Firebird, acknowledging Firebird's continuing march forward as the database workhorse for midmarket business applications.

Read more | Post comment
..::::..::::..

An interview with Chris Date

O'Reilly has an in-depth interview with Chris Date, who co-wrote "The third manifesto" and helped promote the relational model in the mid-70's. Chris has outspoken views about the relational model, SQL, object-relational databases and much more. What would our own Jim Starkey have to say about Chris' views?

Read more | Post comment

..::::....::::....::::....::::..

FBMail V1.2 is available for download.

FBMail V1.2 is available for download.
Project (where FBMail is included) announces New support mechanism :
FBUtils now has a new email list for support, the email list is fbutils-users. All feature requests and bug reports should still be added via the Sourceforge interface.
..::::..::::..::::..

Sample Code for Shriking a Database (aka Firebird Vacuuming)

Oscar Porcar contributed a piece of code (c#) that does a database backup and restore to keep its size as small as possible. It might be useful for cases when you insert and delete some temporary data and the database size increases (the server doesn't shrink it automatically - instead it reuses the "empty" space when adding new data.)
..::::....::::....::::....::::..

How to use firebirds GSEC utility to add, delete and modify users.

GSEC is a utility firebirds utility for managing users.
Here is how to use it
..::::..::::..

All-in-one installer for Compiere + Fyracle

Mohdizaniahmad writes: "I managed to prepare an all-in-one installer for windows environment. It has compiere 2.5.3a + fyracle-0.8.10 + jdk 5.0 in a single install. [...] You can install compiere in just a minute with the necessary shortcut ready for you. The installer is about 250 MB in size."
Read more
..::::...::::...::::...::::..

Wednesday, January 04, 2006

Firebird SQL Roadmap for 2006 - sqlsummit.com

Following a recent developer conference in Prague, the Firebird Project published a roadmap for 2006 and beyond. Firebird 3.0 will merge Firebird 2.0 with the Vulcan code base, which includes fine-grained multi-threading and enhanced security. Target date for a beta version of Firebird 3.0 is the second quarter of 2006. (more).

..::::..

Firebird Performance - Build for Speed

- Add more ram is cheap (if server is swapping)
- Buy an 64 bit server (for databases is an must to have more than 4G of ram) if database is more than 30G
- Build an raid 0 array (for speed)
- Use Firebird Classic for SMP systems (multicore)
More ideas in this blog post
..::::..

Tuesday, January 03, 2006

Firebird - open your FLAP[s] - New acronym

FLAP is an acronym for a set of Free Software programs commonly used together to run dynamic web sites:



..::::..::::..::::..::::..::::..::::..

Request for Ideas: Firebird in .NET Tutorial

Dan working on a tutorial that should cover the basics of Firebird and its usage in .NET.
http://www.dotnetfirebird.org/blog/...ird-in-net.html

..::::....::::....::::....::::..