Differences between revisions 83 and 106 (spanning 23 versions)
Revision 83 as of 2008-01-24 12:10:37
Size: 3301
Editor: fomigate
Comment: buzhug added
Revision 106 as of 2009-06-25 14:09:26
Size: 2036
Editor: 141
Comment: addition of xml databases
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
[[TableOfContents]] <<TableOfContents>>
Line 3: Line 3:
The contents of this page are being merged into the
ChoosingDatabase page.
This page lists database interfaces available for Python. It may also help in finding a suitable database engine for you to use in your Python database applications.
Line 6: Line 5:
= Generic Database Interfaces and APIs =
Line 7: Line 7:
= Relational database =
Databases based on a relational model, with support for SQL.
 * The Python standard for database interfaces is the [[http://www.python.org/dev/peps/pep-0249/|Python DB-API (PEP 249)]]
Line 10: Line 9:
== PostgreSQL ==
 * psycopg
  * psycopg1: http://initd.org/projects/psycopg1
  * psycopg2: http://initd.org/projects/psycopg2
 * pyPgSQL: http://pypgsql.sourceforge.net/
 * PyGreSQL: http://www.pygresql.org/
 * PoPy: http://sourceforge.net/projects/popy
  * PoPy and PyGreSQL are [http://www.zope.org/Members/tm/Full_Announce merging]
 * PostgresPy: http://python.projects.postgresql.org/
 * pgasync: http://jamwt.com/pgasync/
  * Asynchronous and pure Python. Speed comparable to C bindings. Special support for Twisted.
 * bpgsql: http://barryp.org/software/bpgsql/
  * Barebones pure-Python PostgreSQL client
 * ["sipPQ"]
 * mxODBC: http://www.egenix.com/products/python/mxODBC/
 Most Python database interfaces adhere to this standard.
Line 26: Line 11:
 Supports the PostgreSQL ODBC driver on both Windows and Unix. Note that you have to enable the advanced option "Use bytea for lo" in case you want to work with BLOBs.  * Most databases have ODBC support; see the section below on ODBC modules.
 * Java databases usually support JDBC, and can be used from Jython.
 * See also DbApiModuleComparison
Line 28: Line 15:
== Oracle ==
 * cx_Oracle: http://www.python.net/crew/atuining/cx_Oracle/
 * DCOracle: http://www.zope.org/Products/DCOracle/
  * This is for old Oracle versions (7 and 8).
 * DCOracle2: http://www.zope.org/Members/matt/dco2
  * For Oracle 8i and up.
 * mxODBC: http://www.egenix.com/products/python/mxODBC/
== ODBC Support ==
Line 36: Line 17:
 Supports the ''Oracle Instant Client'' which is available for Windows and many popular Unix platforms.  * See [[ODBC]]
Line 38: Line 19:
== IBM DB2 ==
 * PyDB2: http://sourceforge.net/projects/pydb2
== ADO Support ==
Line 41: Line 21:
DB2's native CLI is ODBC compatible and mxODBC can link directly against these libraries. It also supports the DB2 ODBC driver on Windows.  * See [[ADO]]
Line 43: Line 23:
= Database Interfaces for Relational Database Systems =
Line 44: Line 25:
== Sybase ==
 * sybase: http://www.object-craft.com.au/projects/sybase/
 * mxODBC: http://www.egenix.com/products/python/mxODBC/
Database systems employing a relational model, with support for SQL.
Line 48: Line 27:
 Supports Sybase ASE and Sybase Anywhere. == General Purpose Database Systems ==
Line 50: Line 29:
== MaxDB/SAPDB ==
 * sapdb: http://dev.mysql.com/doc/maxdb/interfaces.html
 * mxODBC: http://www.egenix.com/products/python/mxODBC/
 * IBM [[DB2]]
 * [[Firebird]] (and Interbase)
 * [[Informix]]
 * [[Ingres]]
 * [[MySQL]]
 * [[Oracle]]
 * [[PostgreSQL]]
 * [[SAP DB]] (also known as "MaxDB")
 * Microsoft [[SQL Server]]
 * [[Sybase]]
Line 54: Line 40:
 MaxDB/SAPDB's native CLI is ODBC compatible and mxODBC can link directly against the CLI libs on Unix. It also supports the ODBC driver on Windows. (To add new entries, please choose DatabaseTemplate when creating the page.)
Line 56: Line 42:
== Informix ==
 * InformixDB: http://informixdb.sourceforge.net/
 * mxODBC: http://www.egenix.com/products/python/mxODBC/
== Database Systems for Embedding Into Applications ==
Line 60: Line 44:
 Note: The Informix ODBC drivers are included in the Informix CSDK. The following database systems are more oriented towards embedded applications:
Line 62: Line 46:
== Ingres ==
 * ingresdbi: http://www.ingres.com
  * [[asql]]
  * GadFly
  * [[SQLite]]
  * [[ThinkSQL]]

(To add new entries, please choose DatabaseTemplate when creating the page.)

= Non-Relational Databases =

== Record-based Databases ==

Databases working on flat files or fixed records.

  * MetaKit
  * [[ZODB]]
  * [[BerkeleyDB]]
  * [[KirbyBase]]
  * [[Durus]]
  * [[atop]]
  * [[buzhug]]

(To add new entries, please choose DatabaseTemplate when creating the page.)

== XML Databases ==

  * 4Suite server
  * Oracle/Sleepycat DB XML ([[http://jimmyg.org/blog/2008/oracle-db-xml-was-sleepycat.html|howto]])

(To add new entries, please choose DatabaseTemplate when creating the page.)
Line 67: Line 78:
== buzhug ==
[http://buzhug.sourceforge.net/ buzhug] is a pure-Python database engine, using a Pythonic, no-SQL syntax.

The data is stored and accessed on disk (it is not an in-memory database). The implementation has been designed to make all operations, and especially selection, as fast as possible with an interpreted language.

A limited benchmark using the same use cases as SQLite's author shows that buzhug is much faster than other pure-Python modules (KirbyBase, gadfly). SQLite, which is implemented in C, is faster, but only less than 3 times on the average.

== SnakeSQL ==
[http://www.pythonweb.org/projects/snakesql/ SnakeSQL] is a pure Python SQL database written to remove the dependence of the Python Web Modules on 3rd party drivers for non-Python databases like MySQL but designed to be a useful database in its own right.
 * [[buzhug]]
 * [[SnakeSQL]]

This page lists database interfaces available for Python. It may also help in finding a suitable database engine for you to use in your Python database applications.

Generic Database Interfaces and APIs

  • The Python standard for database interfaces is the Python DB-API (PEP 249) Most Python database interfaces adhere to this standard.

  • Most databases have ODBC support; see the section below on ODBC modules.
  • Java databases usually support JDBC, and can be used from Jython.
  • See also DbApiModuleComparison

ODBC Support

ADO Support

Database Interfaces for Relational Database Systems

Database systems employing a relational model, with support for SQL.

General Purpose Database Systems

(To add new entries, please choose DatabaseTemplate when creating the page.)

Database Systems for Embedding Into Applications

The following database systems are more oriented towards embedded applications:

(To add new entries, please choose DatabaseTemplate when creating the page.)

Non-Relational Databases

Record-based Databases

Databases working on flat files or fixed records.

(To add new entries, please choose DatabaseTemplate when creating the page.)

XML Databases

  • 4Suite server
  • Oracle/Sleepycat DB XML (howto)

(To add new entries, please choose DatabaseTemplate when creating the page.)

Native Python Databases

DatabaseInterfaces (last edited 2020-12-09 09:29:13 by MarcAndreLemburg)

Unable to edit the page? See the FrontPage for instructions.