Main > Free Download Search >

Free firebird software for linux

firebird

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 43
Firebird .NET Data Provider 2.1.0

Firebird .NET Data Provider 2.1.0


Firebird .NET Data Provider is an ADO.NET data provider for Firebird. more>>
Firebird .NET Data Provider is an ADO.NET data provider for Firebird. Firebird .NET Data Provider is written in C# and provides a high-performance native implementation of the Firebird API. It also includes an implementation of the Firebird Services API and Firebird array datatype support.

Firebird is a relational database offering many ANSI SQL standard features that runs on Linux, Windows, and a variety of Unix platforms. Firebird offers excellent concurrency, high performance, and powerful language support for stored procedures and triggers. It has been used in production systems, under a variety of names since 1981.

Firebird is a commercially independent project of C and C++ programmers, technical advisors and supporters developing and enhancing a multi-platform relational database management system based on the source code released by Inprise Corp (now known as Borland Software Corp) on 25 July, 2000 under the InterBase Public License v.1.0
<<less
Download (0.56MB)
Added: 2007-03-24 License: MPL (Mozilla Public License) Price:
968 downloads
Firebird Relational Database 2.0 / 2.1 Beta 1

Firebird Relational Database 2.0 / 2.1 Beta 1


Firebird Relational Database is a cluster of databases through JDBC. more>>
Firebird is a relational database offering many ANSI SQL-99 features that runs on Linux, Windows, and a variety of Unix platforms.

Firebird offers excellent concurrency, high performance, and powerful language support for stored procedures and triggers. Firebird Relational Database has been used in production systems and under a variety of names since 1981.

Firebird is a commercially independent project of C and C++ programmers, technical advisors and supporters developing and enhancing a multi-platform relational database management system based on the source code released by Inprise Corp (now known as Borland Software Corp) on 25 July, 2000 under the InterBase Public License v.1.0.


New code modules added to Firebird are licensed under the Initial Developers Public License. (IDPL). The original modules released by Inprise are licensed under the InterBase Public License v.1.0. Both licences are modified versions of the Mozilla Public License v.1.1.

Installing:

In order to install the firebird version of IB 6.0 you will need to perform the following steps:

1. Get the required packages:

Get the glibc update from RedHat, the one I used
was from ftp://updates.redhat.com/7.0/i386/glibc-2.2-5.i386.rpm

Get ncurses4 from
ftp://carrier.ision.net/pub/ftp.redhat.com/i386/en/RedHat/RPMS/ncurses4-5.0-2.i386.rpm
or another redhat mirror.

Get Firebird from
ftp://firebird.sourceforge.net/pub/firebird/release/FirebirdSS-0.9-1.i386.rpm

2. Prepare the installation:

Log in as root.
Use a plain text console to do this and be sure
that all Gnome desktops are closed.
(One user reported that the Gnome desktop
(apparently ICEwm)
blocked port 3050. I could not reproduce this
here, but it seems that it uses port numbers
that arent assigned in /etc/services for own
purposes)

3. Add localhost.localdomain to /etc/hosts.equiv:
echo localhost.localdomain >>/etc/hosts.equiv

4. Change to the directory where you have placed
the downloaded packages.

5. Install the glibc update:
rpm --install --force glibc-2.2-5.i386.rpm

6. Install libncurses.so.4:
rpm --install --force ncurses4-5.0-2.i386.rpm

7. Install Firebird:
rpm --install --force FirebirdSS-0.9-1.i386.rpm

8. Add /opt/interbase/bin to your path:
You can either change /etc/profile
or do
export PATH=$PATH: /opt/interbase/bin
or
change the profiles in your users home directories

9. Check that all went well:

Read /opt/interbase/SYSDBA.password
to get your SYSDBA password.

gsec -display
should display the list of known users
(SYSDBA only after a fresh install)

isql /opt/interbase/examples/employee.gdb
SQL> SHOW TABLES;
should display all tables from this database
SQL>quit;
<<less
Download (1.4MB)
Added: 2007-07-02 License: MPL (Mozilla Public License) Price:
847 downloads
Firefoot Library 0.1.3

Firefoot Library 0.1.3


FireFoot is library that provides an easy way for C language programmers to connect to Firebird database servers. more>>
FireFoot is library that provides an easy way for C language programmers to connect to Firebird database servers (and provably Interbase). It uses the Firebird/Interbase API.
Library supports:
- Create, delete, connect to Firebird database servers.
- Single transaction management.
- Common or parametrized SQL statement support.
- Support for basic data types and BLOBs.
- User management support.
- Support the backup and restore of databases.
This library exists as an alternative of Firebird/Interbase C language API. It is made in C language, using GLib object model.
- It is planned to be multiplatform, working at least on Linux and Windows. Until now it is only tested on Linux, but shouldnt be a problem to port it to Windows.
FireFoot libary is released under the GNU/GPL version 2 licence.
<<less
Download (0.50MB)
Added: 2005-07-28 License: GPL (GNU General Public License) Price:
1549 downloads
JayBird 2.0.1

JayBird 2.0.1


Jaybird is JCA/JDBC driver suite to connect to Firebird database server. more>>
Jaybird is JCA/JDBC driver suite to connect to Firebird database server. Historically Borland opened sources of type 3 JDBC driver called InterClient.

However due to some inherent limitations of Firebird client library it was decided that type 3 driver is a dead end, and Firebird team developed pure Java implementation of wire protocol.

This implementation became basis for JayBird, pure Java driver for Firebird relational database.

This driver is based on both the new JCA standard for application server connections to enterprise information systems and the well known JDBC standard.

The JCA standard specifies an architecture in which an application server can cooperate with a driver so that the application server manages transactions, security, and resource pooling, and the driver supplies only the connection functionality.

While similar to the JDBC 2 XADataSource idea, the JCA specification is considerably clearer on the division of responsibility between the application server and driver.

JayBird 1.5 provides extensions to some JDBC interfaces. All extension interfaces are released under modified BSD license, on “AS IS” basis, this should make linking to these classes safe from the legal point of view. All classes belong to org.firebirdsql.jdbc.* package.

JayBird 1.0 provided only pure Java wire protocol implementation. While being most effective in client-server setups (even more effective than native client libraries), it performed worser when connected to the server residing on the same host compared to native (C/C++/Delphi/etc) solutions. Reason is that type 4 driver communicates with the server using network sockets, which introduce additional overhead. Native client library has possibility to use IPC when connecting to the database on the same host. This might increase performance even by 100%.

JayBird 1.5 provides also type 2 JDBC driver that uses native client library to connect to the databases. Additionally JayBird 1.5 can use embedded version of Firebird relational database allowing to create Java applications that does not require separate server setup.

However type 2 driver has also limitations. Due to multi-threading issues in Firebird client library, it is not possible to access it from different threads simultaneously when running in local mode (IPC). In this case only one thread is allowed to access library at a time. Driver tries to provide needed synchronization.

Current implementation uses mutex that is local to the classloader that loaded JayBird classes. This poses some deployment limitations: firebirdsql.jar must be deployed so, that it is loaded by the system classloader. For standalone web containers like Resin or Tomcat, JayBird should usually be deployed in their lib/ directory. It is allowed to include it in the WAR archives, but if and only if it is guaranteed that only one application will access Firebird.

When accessing remote servers thread per connection policy applies. Driver provides necessary synchronization for this situation.

Embedded version of the server cannot be used on Linux systems in multi-threaded applications. In particular this makes embedded version of the server unusable for web applications, where usually each request is served in separate thread.

<<less
Download (2.8MB)
Added: 2006-01-09 License: MPL (Mozilla Public License) Price:
1390 downloads
FlameRobin 0.7.6

FlameRobin 0.7.6


FlameRobin is a database administration tool for Firebird DBMS. more>>
FlameRobin project is a database administration tool for Firebird DBMS.
Main features:
- lightweight (small footprint, fast execution)
- cross-platform (Linux, Windows for start, others planned too)
- dependant only on other open source software
<<less
Download (1.7MB)
Added: 2006-11-22 License: Free for non-commercial use Price:
1069 downloads
KInterbasDB 3.2

KInterbasDB 3.2


KInterbasDB is a Python extension package that implements Python Database API 2.0-compliant support. more>>
KInterbasDB project is a Python extension package that implements Python Database API 2.0-compliant support for the open source relational database Firebird and some versions of its proprietary cousin Borland Interbase.
In addition to the minimal feature set of the standard Python DB API, KInterbasDB also exposes nearly the entire native client API of the database engine.
Enhancements:
- At concurrency_level 1, it was possible for a deadlock to occur if KInterbasDB simultaneously raised an exception in one thread while executing a SQL statement in another. This problem did not affect concurrency_level 2. Thanks for Atsuo Ishimoto for reporting this bug.
- The official implementation of the automagic TEXT_UNICODE type translator (in the kinterbasdb.typeconv_text_unicode module) was missing support for the new character sets introduced in Firebird 2.0 (namely, the corrected version of UTF8, plus KOI8-R, KOI8-U, and WIN1258). Thanks to Oleg Deribas for bringing this to my attention.
<<less
Download (0.31MB)
Added: 2006-08-11 License: BSD License Price:
1170 downloads
Tiny Report 0.9

Tiny Report 0.9


Tiny Report is a database reporting tool and report generator like Crystal Reports. more>>
Tiny Report is a free software that helps you to Design, Manage, and Deliver Reports for Extreme Business Insight.
It simply automates to production of dynamic PDFs. It allows you to design your templates in OpenOffice.
Main features:
The process
- Design your .SXW fie in OpenOffice,
- Use tiny_sxw2rml.py to convert the file in a .RML template,
- Use tiny_report.py to produce PDF file using any database.
Report Designer
- The report designer used is OpenOffice. All styles, tags and features of OpenOffice documents (.SXW) are implemented instead frames.
- No specific language to learn,
- Support style, colors, table, section, items, images, ...
- OpenOffice is not needed to render the PDF
Data Acquisition
- Support python expressions for effective computation,
- Browse through table with the object relationnal mapping,
- You do not have to code the database structure (introspection on the DB),
- You can create your own object and functions
- Lots of databases supported: MySQL, Postgres, SQLite, Firebird, SybaseConnection, MAX DB
- Support all links between tables (one2many, many2one, ...),
- Lots of special features using simple Python: group, sort.
Report Renderer
- Fast, simple and easy,
- Standalone to be included in other applications.
<<less
Download (0.36MB)
Added: 2005-10-12 License: GPL (GNU General Public License) Price:
888 downloads
ibWebAdmin 1.0.2

ibWebAdmin 1.0.2


ibWebAdmin is a web frontend for the Firebird and InterBase database server. more>>
ibWebAdmin is a web frontend for the Firebird and InterBase database server. ibWebAdmin project makes the attempt to support all features which Firebird and SQL are offering.
Even if this goal is unattainable, quite a few steps have already been done. By now ibWebAdmin has the basic functions for creating, deleting, modifying databases, tables, generators, triggers and domains. It lets you import, export, enter, edit, delete, query, browse your data. And some more ...
To execute this program you need, beside the Firebird or InterBase database server, an apache webserver with php support.
Enhancements:
- restored php4 compatibility by adding a php4 replacement for the php5-only array_combine() function
<<less
Download (0.60MB)
Added: 2006-08-03 License: GPL (GNU General Public License) Price:
1189 downloads
Kfb 0.1a

Kfb 0.1a


Kfb (KDE Firebird Basictool) is a GUI administration tool for the Firebird database system. more>>
Kfb (KDE Firebird Basictool) is a GUI administration tool for the Firebird database system. The application includes most functions offered by Firebird and introduces some new operations said to be impossible

Kfb is programmed with KDevelop (C++ and Qt). It is fully GUI and based mainly on IBPP, another open source project of C++ interface to Firebird APIs. Kfb also includes some other libraries, ncrypt and fbcopy, and all of them are open source projects.
<<less
Download (0.72MB)
Added: 2007-07-27 License: GPL (GNU General Public License) Price:
823 downloads
libdbi-drivers 0.8.2-1

libdbi-drivers 0.8.2-1


libdbi implements a database-independent abstraction layer in C, similar to the DBI/DBD layer in Perl. more>>
libdbi implements a database-independent abstraction layer in C, similar to the DBI/DBD layer in Perl.
Writing one generic set of code, programmers can leverage the power of multiple databases and multiple simultaneous database connections by using this framework.
The libdbi-drivers project provides the database-specific drivers for the libdbi framework. The drivers officially supported by libdbi are:
- Firebird/Interbase
- FreeTDS (provides access to MS SQL Server and Sybase)
- MySQL
- PostgreSQL
- SQLite/SQLite3
The following drivers are in various stages of completion and are supposed to be included into the next release:
- mSQL
- Oracle
Enhancements:
- This release fixes a packaging error in 0.8.2. There are no source code changes.
<<less
Download (0.93MB)
Added: 2007-02-25 License: GPL (GNU General Public License) Price:
976 downloads
Mozilla Firefox 2.0.0.6

Mozilla Firefox 2.0.0.6


Mozilla Firefox is a Mozilla browser. more>>
Mozilla Firefox project (formerly Firebird, which was formerly Phoenix) is a redesign of Mozillas browser component, written using the XUL user interface language and designed to be cross-platform.
Mozilla Firefox is a Mozilla browser.
It is small, fast and easy to use, and offers many advantages over other web browsers, such as the tabbed browsing and the ability to block pop-up windows.
Main features:
- comprehensive popup controls to keep unwanted advertising off your desktop;
- a tab browsing mode that lets you open several pages in a single window, allowing you to load links in the background without leaving the page youre on;
- integrated search (powered by Google);
- industry leading accessibility with Find As You Type - find links and page text by simply typing;
- simplified privacy controls that let you cover your tracks more effectively;
- a streamlined browser window that lets you see more of the page than any other browser while at the same time being more configurable;
- a large variety of free downloadable extensions and themes that add specific functionality and visual changes to the browser.
<<less
Download (9.2MB)
Added: 2007-07-31 License: MPL (Mozilla Public License) Price:
858 downloads
 
Other version of Mozilla Firefox
Mozilla Firefox 1.5.0.12Mozilla Firefox project (formerly Firebird, which was formerly Phoenix) is a redesign of Mozillas browser component, written using the XUL user interface language and designed to be cross-platform
License:MPL (Mozilla Public License)
Download (8.1MB)
5169 downloads
Added: 2007-05-30
nsFB 1.2

nsFB 1.2


nsFB is an internal AOLserver database driver for the Firebird or Interbase database. more>>
nsFB is an internal AOLserver database driver for the Firebird or Interbase database. It supports reading and writing BLOB data and ARRAY data.
nsFB project supports the full size of varchar (32765 bytes) or char (32767 bytes). Many configuration options are supported, such as charset, dialect, transaction isolation level, etc. All kinds of data types are supported, such as NUMERIC or DECIMAL
Enhancements:
- This release adds support for importing a file into a BLOB and writing a BLOB into a file.
- Hexadecimal or base 64 string representations of data can be read from or written to the database.
<<less
Download (0.022MB)
Added: 2006-10-24 License: LGPL (GNU Lesser General Public License) Price:
1097 downloads
PHP Client Sniffer 2.1.3

PHP Client Sniffer 2.1.3


PHP Client Sniffer is a PHP class file that allows one to quickly determine the clients browser. more>>
PHP Client Sniffer is a PHP class file that allows one to quickly determine the clients browser and system information based on the HTTP_USER_AGENT string. The class can be used to generate browser specific html marks and other client side scripting.
Enhancements:
- add k-meleon support
- add camino support
- add mozilla firebird support
- add amiga support
- fixed issues with netscape and gecko browsers
<<less
Download (0.020MB)
Added: 2006-06-29 License: LGPL (GNU Lesser General Public License) Price:
1217 downloads
fb_shash 1.0

fb_shash 1.0


fb_shash is a UDF library for Firebird/Interbase. more>>
fb_shash is a UDF library for Firebird/Interbase. It implements hash and hmac interfaces to the openssl library.

It supports hash and hmac algorithms such as SHA1 and MD5. fb_shash supports BLOB data.
<<less
Download (0.56MB)
Added: 2006-10-30 License: GPL (GNU General Public License) Price:
1090 downloads
Rails 1.1

Rails 1.1


Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. more>>
Rails web framework is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.

From the Ajax in the view, to the request and response in the controller, to the domain model wrapping the database, Rails gives you a pure-Ruby development environment. To go live, all you need to add is a database and a web server.

Everyone from startups to non-profits to enterprise organizations are using Rails. Rails is all about infrastructure so its a great fit for practically any type of web application Be it software for collaboration, community, e-commerce, content management, statistics, management, you name it.

Rails works with a wealth of web servers and databases. For web server, we recommend Apache or lighttpd running either FastCGI or SCGI. For database, you can use MySQL, PostgreSQL, SQLite, Oracle, SQL Server, DB2, or Firebird. Just about any operating system will do, but we recommend a nix-based one for deployment.

If you need hosting, TextDrive is the official Ruby on Rails host, offering fantastic plans with a knowledgeable staff. Whether you need shared or dedicated hosting, these guys are experts in Ruby on Rails.

Creating a weblog in 15 minutes

In 15 minutes, we go from scratch to complete weblog engine: with comments and an administrative interface. But since the actual application only took 58 lines to complete, we also have time left over to do unit testing, examine the logs, and play around with the domain model.

Putting Flickr on Rails

Ruby on Rails is not just for playing with your local database, its for taking on the web. So in 5 minutes, we create a web-based search engine for Flickr using their public API with all the fades and glamour of Ajax. Hows that for a low-tech alternative to something fancy like Flash.

Evolving your database schema without a sweat

Before you know it, youll have data that you care about in your application. Which makes adding, removing, or changing the schema an error-prone, time-consuming, and frustrating process. That is, unless youre using Ruby on Rails. In 20 minutes, youll learn all about how database migrations can make your schema as flexible as your code with no fear of data loss.
<<less
Download (0.014MB)
Added: 2006-03-28 License: GPL (GNU General Public License) Price:
1306 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 3
  • 1
  • 2
  • 3