Firebird

Firebird is a free, open-source, SQL relational database management system based on the open source edition of InterBase released by Borland Software Corp, formerly known as Inprise Corp. Developed in C and C++, Firebird supports major hardware and software platforms including Windows, Linux, and Mac OS X. Firebird offers many ANSI SQL standard features, allows simultaneous OLTP and OLAP operations through its multi-generational architecture, and supports stored procedures and triggers.

History

In July 2000, Inprise released the source code for the relational DBMS InterBase 6.0. Shortly after, the Firebird project was forked from the InterBase 6.0 code tree on SourceForge, and developers began working on platform builds and new ports and tools. Firebird 1.0 was released in March 2002 for Windows, Linux, and Mac OS X, with support for other platforms soon following. In November 2002, The FirebirdSQL Foundation (now known as the Firebird Foundation) was incorporated to support and raise funds for the developers of the Firebird DBMS.

Foreign Keys

Supported

Joins

Nested Loop Join Hash Join Sort-Merge Join

The query optimizer picks the join order with the longest path and lowest estimated cost in terms of I/O operations and processing, in which a join path is defined as a sequence of joins. The cost of the join method is considered in the computation of the join cost.

Firebird uses nested loop join, sort-merge join, and hash join. The join algorithm is chosen as follows. If the join is an outer join, the join conditions are indexed, or the join conditions are inequalities, the nested loop join is used. If the join is an inner join and the join conditions are both equalities and not indexed, the sort-merge or hash join is used.

Isolation Levels

Read Committed Snapshot Isolation

Firebird supports snapshot isolation, snapshot table stability isolation, and read committed isolation. Snapshot isolation is the default isolation level and allows the transaction to see only changes committed before it started. Snapshot table stability isolation is similar to snapshot isolation but more restrictive. Once this level has started, other transactions cannot modify any tables that have changes pending.

Read committed isolation allows the current transaction to see all data changes by transactions which have committed since the current transaction started. There are two kinds of conflict resolution used in read committed isolation: one that reads the last committed version of a row and thus is non-blocking, and one that makes the transaction unable to modify any row that has pending updates from another transaction.

Views

Virtual Views

Firebird supports three types of virtual views: naturally updatable views, which can be updated automatically without needing to write triggers; updatable views, which are updated through underlying triggers and can accept UPDATE, INSERT, and DELETE statements; and non-updatable views.

Query Interface

SQL

Data Model

Relational

Storage Architecture

Disk-oriented

Logging

Not Supported

Firebird does not include transaction logging facilities, but logging software is available from third-party vendors.

Indexes

B+Tree BitMap

Firebird uses B-trees for indexes. Each index has dedicated index pages in the database and contains record locators in the leaf nodes.

When using an index to access a table, Firebird retrieves the necessary index information in one pass and creates a sparse bitmap, in which the true bits correspond to the page address and record offsets of records in the query. Multiple indexes can be used on a table by ANDing and ORing the bitmaps created from the indexes.

System Architecture

Shared-Everything

Compression

Prefix Compression

Firebird uses prefix and suffix compression for index keys.

Firebird Logo
Website

http://www.firebirdsql.org/

Source Code

https://github.com/FirebirdSQL/firebird

Tech Docs

http://firebirdsql.org/en/firebird-rdbms/

Developer

Borland

Country of Origin

US

Start Year

2000

Former Name

InterBase

Project Type

Open Source

Written in

C, C++

Derived From

InterBase

Operating Systems

Linux, OS X, Solaris, Windows

Licenses

Mozilla Public License

Wikipedia

https://en.wikipedia.org/wiki/Firebird_(database_server)