Differences between revisions 20 and 22 (spanning 2 versions)
Revision 20 as of 2008-12-20 18:34:12
Size: 1974
Comment: undo spam
Revision 22 as of 2010-11-10 23:46:06
Size: 2210
Editor: ip-62-143-153-202
Comment:
Deletions are marked like this. Additions are marked like this.
Line 19: Line 19:
 * [[http://initd.org/pub/software/psycopg/dbapi20programming.pdf|DB-API how-to]] (PDF).
Line 23: Line 21:
=== Talks ===

 * [[http://www.egenix.com/library/presentations/EuroPython2008-Using-the-Python-Database-API/|Talk video and slides: Using the Python Database API]]

 * [[http://www.zope.de/tagung/Dresden_2010/Python-Datenbankprogrammierung_mal.pdf|Slides: Datenbankprogrammierung mit dem Python Database API]] (in German)

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.

  • DatabaseInterfaces -- List of available Python databases interfaces. This also helps you choose the right database for your application.

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.

Talks

Future development

Historical development

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

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