Differences between revisions 105 and 106
Revision 105 as of 2009-01-05 16:03:03
Size: 1727
Editor: 77
Comment:
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 53: Line 53:
== Non-Relational Databases == = Non-Relational Databases =

== Record-based Databases ==

Databases working on flat files or fixed records.
Line 65: Line 69:
== 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.)

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.