Differences between revisions 1 and 103 (spanning 102 versions)
Revision 1 as of 2003-02-06 19:12:23
Size: 1097
Editor: MikeRovner
Comment:
Revision 103 as of 2008-12-08 13:43:07
Size: 1633
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
= DBMS interfaces =
Things you connect to.
== MySQL ==
== PostgreSQL ==
== Oracle ==
== Sybase ==
== MSSQL ==
== BerkeleyDb ==
<<TableOfContents>>
Line 10: Line 3:
Note: The contents of the ChoosingDatabase page are being merged back into this page.
Line 11: Line 5:
= Datafiles interfaces =
Thi
ngs you open.
= Generic Database Interfaces and APIs =
Line 14: Line 7:
== 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
 * The Python standard for database interfaces is the [[http://www.python.org/dev/peps/pep-0249/|Python DB-API (PEP 249)]]
Line 23: Line 9:
== 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.
 Most Python database interfaces adhere to this standard.
Line 33: Line 11:
== gadfly ==  * 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 ==

 * See [[ODBC]]

== ADO Support ==

 * See [[ADO]]

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

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

= Native Python Databases =

 * [[buzhug]]
 * [[SnakeSQL]]

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

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