Differences between revisions 15 and 16
Revision 15 as of 2008-01-13 02:11:10
Size: 1989
Comment:
Revision 16 as of 2008-05-18 09:14:38
Size: 2020
Editor: dslb-084-057-052-145
Comment:
Deletions are marked like this. Additions are marked like this.
Line 20: Line 20:
Line 21: Line 22:

 * UsingDbApiWithPostgres

Starting point for learning about using databases from Python.

Relational Databases

Relational databases are the most widely used type of database, storing information as tables containing a number of rows.

  • ChoosingDatabase -- lists databases supported by Python libraries.

  • DatabaseInterfaces -- another list of databases accessible from Python. (Should merge this list with the above one...)

The DB-API

The DB-API is a specification for a common interface to relational databases. The current version of the specification is version 2.0.

Future development

Historical development

  • HigherLevelDatabaseProgramming -- wrappers that provide simpler or higher-level database interfaces, such as object/relational mappers and SQL generators.

  • [http://sqlrelay.sourceforge.net/ SQL Relay] is a persistent database connection pooling, proxying and load balancing system for Unix systems, supporting many different databases and languages, including PostgreSQL and Python.

Other resources

Non-relational Databases

DatabaseProgramming (last edited 2011-11-26 09:05:05 by MarcAndreLemburg)

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