Jump to content

Apache Derby: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Line 42: Line 42:
In terms of execution speed and SQL compliance, Derby has not performed well in some comparisons to other embedded SQL databases such as the also free and open source [[H2 (DBMS)|H2]] database.<ref>{{cite website | title=Hsqldb vs Derby| publisher=Ignacio Coloma| url=http://icoloma.blogspot.com/2007/01/hsqldb-vs-derby.html}}</ref><ref>{{cite website | title=H2 Database Performance| publisher=H2 Database| url=http://www.h2database.com/html/performance.html}}</ref><ref>{{cite website | title=Benchmark for h2, hypersonic, derby | publisher=H2 Database | url=http://groups.google.com/group/h2-database/browse_thread/thread/55a7558563248148}}</ref>
In terms of execution speed and SQL compliance, Derby has not performed well in some comparisons to other embedded SQL databases such as the also free and open source [[H2 (DBMS)|H2]] database.<ref>{{cite website | title=Hsqldb vs Derby| publisher=Ignacio Coloma| url=http://icoloma.blogspot.com/2007/01/hsqldb-vs-derby.html}}</ref><ref>{{cite website | title=H2 Database Performance| publisher=H2 Database| url=http://www.h2database.com/html/performance.html}}</ref><ref>{{cite website | title=Benchmark for h2, hypersonic, derby | publisher=H2 Database | url=http://groups.google.com/group/h2-database/browse_thread/thread/55a7558563248148}}</ref>


== References==
==References==
<!-- How to add a footnote:
<!-- How to add a footnote:
<nowiki>
<nowiki>
Line 56: Line 56:
<references/>
<references/>
</div>
</div>

==Books==
*{{citation
| first1 = Paul C.
| last1 = Zikopoulo
| first2 = George
| last2 = Baklarz
| first3 = Dan
| last3 = Scott
| date = November 6, 2005
| title = Apache Derby -- Off to the Races: Includes Details of IBM Cloudscape
| edition = First
| publisher = [[IBM Press]]
| pages = 600
| isbn = 0131855255
| url = http://www.ibmpressbooks.com/bookstore/product.asp?isbn=0131855255
}}


== See also ==
== See also ==

Revision as of 20:07, 24 April 2009

Apache Derby
Original author(s)Cloudscape Inc (Later IBM)
Developer(s)Apache Software Foundation
Stable release
10.4.2.0 / September 5, 2008 (2008-09-05)
Repository
Written inJava
Operating systemCross-platform
TypeRelational Database Management System
LicenseApache License 2.0
Websitehttp://db.apache.org/derby/

Apache Derby is a Java relational database management system that can be embedded in Java programs and used for online transaction processing. It has a 2 MB disk-space footprint.[1] Apache Derby is developed as an open source project under the Apache 2.0 licence. Derby was previously distributed as IBM Cloudscape. It is currently distributed as Sun Java DB.

Derby Technologies

Derby Embedded Database Engine

The core of the technology, Derby’s database engine is a full functioned relational embedded database engine. JDBC and SQL are the programming APIs. It has IBM DB2 SQL syntax.

Derby Network Server

The Derby network server increases the reach of the Derby database engine by providing traditional client server functionality. The network server allows clients to connect over TCP/IP using the standard DRDA protocol. The network server allows the Derby engine to support networked JDBC, ODBC/CLI, Perl and PHP.

Database Utilities

  • ij – a tool that allows SQL scripts to be executed against any JDBC database.
  • dblook – Schema extraction tool for a Derby database.
  • sysinfo – Utility to display version numbers and class path.

History

Apache Derby originated at Cloudscape Inc, an Oakland, California start-up founded in 1996 to develop Java database technology. The first release of the database engine, then called JBMS, was in 1997. Subsequently the product was renamed Cloudscape and releases were made about every six months.

In 1999 Informix Software, Inc., acquired Cloudscape, Inc. In 2001 IBM acquired the database assets of Informix Software, including Cloudscape. The database engine was re-branded to IBM Cloudscape and releases continued, mainly focusing on embedded use with IBM's Java products and middleware.

In August 2004 IBM contributed the code to the Apache Software Foundation as Derby, an incubator project sponsored by the Apache DB project. In July 2005 the Derby project graduated from the Apache incubator and is now being developed as a sub-project of the DB Top Level Project at Apache. Prior to Derby's graduation from incubation, Sun joined the Derby project with an intent to use Derby as a component in their own products,[2] and with the release of Java 6 in December 2006, Sun started packaging Derby in the JDK branded as Java DB.

In March 2007 IBM announced that they would withdraw marketing and support for the Cloudscape product, but would continue to contribute to the Apache Derby project.[3]

Comparison to other embedded SQL Java databases

In terms of execution speed and SQL compliance, Derby has not performed well in some comparisons to other embedded SQL databases such as the also free and open source H2 database.[4][5][6]

References

  1. ^ "The Apache DB Project". Apache.org.
  2. ^ "Apache Derby graduates with Sun onboard". CNET news.com.
  3. ^ "Changes in Cloudscape Availability and Support". IBM.
  4. ^ "Hsqldb vs Derby". Ignacio Coloma.
  5. ^ "H2 Database Performance". H2 Database.
  6. ^ "Benchmark for h2, hypersonic, derby". H2 Database.

Books

See also