Differences between revisions 106 and 107
Revision 106 as of 2009-06-25 14:09:26
Size: 2036
Editor: 141
Comment: addition of xml databases
Revision 107 as of 2012-06-25 22:02:56
Size: 2421
Editor: NigelSmall
Comment: wiki restore 2013-01-23
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
Line 5: Line 6:
Line 7: Line 9:
 * The Python standard for database interfaces is the [[http://www.python.org/dev/peps/pep-0249/|Python DB-API (PEP 249)]]
Line 9: Line 10:
 Most Python database interfaces adhere to this standard.  * 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.
Line 13: Line 14:
 * See also DbApiModuleComparison  * See also [[DbApiModuleComparison|DbApiModuleComparison]]
Line 17: Line 19:
 * See [[ODBC]]
* See [[ODBC|ODBC]]
Line 21: Line 25:
 * See [[ADO]]
* See [[ADO|ADO]]
Line 25: Line 31:
Line 26: Line 33:
Line 29: Line 37:
 * IBM [[DB2]]
 * [[Firebird]] (and Interbase)
 * [[Informix]]
 * [[Ingres]]
 * [[MySQL]]
 * [[Oracle]]
 * [[PostgreSQL]]
 * [[SAP DB]] (also known as "MaxDB")
 * Microsoft [[SQL Server]]
 * [[Sybase]]
Line 40: Line 38:
(To add new entries, please choose DatabaseTemplate when creating the page.)  * IBM [[DB2|DB2]]
 * [[Firebird|Firebird]] (and Interbase)
 * [[Informix|Informix]]
 * [[Ingres|Ingres]]
 * [[MySQL|MySQL]]
 * [[Oracle|Oracle]]
 * [[PostgreSQL|PostgreSQL]]
 * [[SAP DB|SAP DB]] (also known as "MaxDB")
 * Microsoft [[SQL Server|SQL Server]]
 * [[Sybase|Sybase]]


(To add new entries, please choose [[DatabaseTemplate|DatabaseTemplate]] when creating the page.)
Line 44: Line 55:
Line 46: Line 58:
  * [[asql]]
  * GadFly
  * [[SQLite]]
  * [[ThinkSQL]]
Line 51: Line 59:
(To add new entries, please choose DatabaseTemplate when creating the page.)  * [[asql|asql]]
 * [[GadFly|GadFly]]
 * [[SQLite|SQLite]]
 * [[ThinkSQL|ThinkSQL]]


(To add new entries, please choose [[DatabaseTemplate|DatabaseTemplate]] when creating the page.)
Line 55: Line 70:
Line 56: Line 72:
Line 59: Line 76:
  * MetaKit
  * [[ZODB]]
  * [[BerkeleyDB]]
  * [[KirbyBase]]
  * [[Durus]]
  * [[atop]]
  * [[buzhug]]
Line 67: Line 77:
(To add new entries, please choose DatabaseTemplate when creating the page.)  * [[MetaKit|MetaKit]]
 * [[ZODB|ZODB]]
 * [[BerkeleyDB|BerkeleyDB]]
 * [[KirbyBase|KirbyBase]]
 * [[Durus|Durus]]
 * [[atop|atop]]
 * [[buzhug|buzhug]]


(To add new entries, please choose [[DatabaseTemplate|DatabaseTemplate]] when creating the page.)
Line 71: Line 91:
  * 4Suite server
  * Oracle/Sleepycat DB XML ([[http://jimmyg.org/blog/2008/oracle-db-xml-was-sleepycat.html|howto]])
Line 74: Line 92:
(To add new entries, please choose DatabaseTemplate when creating the page.)  * 4Suite server
 * Oracle/Sleepycat DB XML ([[http://jimmyg.org/blog/2008/oracle-db-xml-was-sleepycat.html|howto]])


== Graph Databases ==


 * [[Neo4j|Neo4j]]


(To add new entries, please choose [[DatabaseTemplate|DatabaseTemplate]] when creating the page.)
Line 78: Line 107:
 * [[buzhug]]
 * [[SnakeSQL]]

* [[buzhug|buzhug]]
 * [[SnakeSQL|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)

Graph Databases

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