Differences between revisions 1 and 97 (spanning 96 versions)
Revision 1 as of 2003-02-06 19:12:23
Size: 1097
Editor: MikeRovner
Comment:
Revision 97 as of 2008-12-08 12:34:14
Size: 4772
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
= DBMS interfaces =
Things you connect to.
== MySQL ==
== PostgreSQL ==
<<TableOfContents>>

Note: The contents of the ChoosingDatabase page are being merged back into this page.

= Generic Database Interfaces and APIs =

 * The Python standard for database interfaces is the [[http://www.python.org/dev/peps/pep-0249/|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 ==

 * ceODBC: http://ceodbc.sourceforge.net

 * pyodbc: http://pyodbc.sourceforge.net

 * [[http://www.egenix.com/products/python/mxODBC|mxODBC]]: A commercial Python extension that provides ODBC connectivity on Windows, Linux, Mac OS X, FreeBSD and many other Unix platforms.

 * [[http://www.egenix.com/products/python/mxODBCConnect|mxODBC Connect]]: A commercial client-server product that allows connecting Python to ODBC compatible databases running on remote servers without requiring an ODBC driver on the client side.

 * ODBTPAPI: http://benjiyork.com/odbtp.html

== ADO Support ==

 * adodbapi (http://adodbapi.sourceforge.net/): A Python module that makes it easy to use Microsoft ADO for connecting to databases and other data sources.

= Database Interfaces for Relational Database Systems =

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

== General Purpose Database Systems ==

 * IBM [[DB2]]
 * [[Firebird]] (and Interbase)
 * [[Informix]]
 * [[Ingres]]
 * [[MySQL]]
 * [[Oracle]]
 * [[PostgreSQL]]
 * [[SAP DB]] (also known as "MaxDB")
 * Microsoft [[SQL Server]]
 * [[Sybase]]

(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:

  * GadFly
  * [[SQLite]]
  * [[ThinkSQL]]

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

== Non-Relational Databases ==

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

= Native Python Databases =

== 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.

-----

These entries still need to be merged into the resp. sub-pages:
Line 6: Line 89:
== Sybase ==
== MSSQL ==
== BerkeleyDb ==
Line 10: Line 90:
 * cx_Oracle: http://www.python.net/crew/atuining/cx_Oracle/
Line 11: Line 92:
= Datafiles interfaces =
Things you open.
 * DCOracle: http://www.zope.org/Products/DCOracle/
  * This is for old Oracle versions (7 and 8).
Line 14: Line 95:
== xBase ==
Which stands for .dbf files interface.[[BR]]
.bdf files were produced by several old systems like dBase(II,III,IV), Fox(Base,Pro)
 * xBase (http://linux.techass.com/projects/xdb/)
 * http://www.fiby.at/dbfpy.html
 * http://www.sequiter.com/products/Python/
 * http://cbbrowne.com/info/xbase.html
 * http://www.e-bachmann.dk/docs/xbase.htm
 * DCOracle2: http://www.zope.org/Members/matt/dco2
  * For Oracle 8i and up.
Line 23: Line 98:
== dbm ==
A family of old unix plain hash tables. Has varieties like dbm, ndbm, gdbm, dbmdb185.[[BR]]
See [http://www.python.org/doc/current/lib/module-anydbm.html anydbm],
[http://www.python.org/doc/current/lib/module-dumbdbm.html dumbdbm],
[http://www.python.org/doc/current/lib/module-dbhash.html dbhash],
[http://www.python.org/doc/current/lib/module-bsddb.html bsddb],
[http://www.python.org/doc/current/lib/module-dbm.html dbm],
[http://www.python.org/doc/current/lib/module-gdbm.html gdbm]
in Python Standard Library.
 * mxODBC: http://www.egenix.com/products/python/mxODBC/
  * Supports the [[http://www.oracle.com/technology/tech/oci/instantclient/index.html|Oracle Instant Client]] which is available for Windows and many popular Unix platforms.
Line 33: Line 101:
== gadfly == == IBM DB2 ==

 * More info on [[DB2]]

== Sybase ASE ==

 * sybase
  * old: http://www.object-craft.com.au/projects/sybase/
  * new: http://python-sybase.sourceforge.net/

 * mxODBC: http://www.egenix.com/products/python/mxODBC/
  * Supports Sybase ASE.

== Sybase SQL Anywhere ==

 * sqlanydb: http://dcx.sybase.com/1100en/dbprogramming_en11/pg-python.html
  * Implements with extensions Database API 2.0

 * mxODBC: http://www.egenix.com/products/python/mxODBC/
  * Supports SQL Anywhere.

== MaxDB/SAPDB ==

 * sdb: http://help.sap.com/saphelp_nw04s/helpdata/en/3c/5c02409d59ea69e10000000a155106/frameset.htm

 * mxODBC: http://www.egenix.com/products/python/mxODBC/
  * 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.

== Informix ==

 * InformixDB: http://informixdb.sourceforge.net/

 * mxODBC: http://www.egenix.com/products/python/mxODBC/
  * Note: The Informix ODBC drivers are included in the Informix CSDK.

== Ingres ==

 * ingresdbi: http://www.ingres.com

Note: The contents of the ChoosingDatabase page are being merged back into this page.

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

Native Python Databases

buzhug

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

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.


These entries still need to be merged into the resp. sub-pages:

Oracle

IBM DB2

  • More info on DB2

Sybase ASE

Sybase SQL Anywhere

MaxDB/SAPDB

Informix

Ingres

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

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