Differences between revisions 19 and 20
Revision 19 as of 2005-08-04 03:56:12
Size: 5
Editor: sina152-194
Comment:
Revision 20 as of 2005-08-04 03:56:53
Size: 2399
Editor: sina152-194
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
qqq There are several wrappers that provide improved or simplified interfaces to SQL databases. Some of these might be referred to as ``object relational mappers``, or ORM in this list -- these create Pythonic objects out of database rows. Others may only help generate SQL, or provide simple mapping support.

 * DbObj: ORM
 * [http://opensource.theopalgroup.com/ db_row]: SQL result wrapper
 * [http://forgetsql.sourceforge.net/ forgetSQL]: ORM
 * [http://www.livinglogic.de/Python/sql/ ll.sql]: SQL generator
 * PgResultSet: built-in facility for column access by name for pyPgSQL and PySQLite
 * MiddleKit: ORM
 * [http://modeling.sourceforge.net/ Modeling Object-Relational Bridge]: ORM and schema design with Zope integration
 * [http://www.tux4web.de/orm/ Object Relational Membrame]: ORM
 * [http://pdo.neurokode.com PDO]: Python Database Objects - allows use of most DBAPI modules with a clean, simple API similar in scope to ADO or JDBC. Column access by name is provided by a low overhead mechanism.
 * PyDo: ORM
 * The PythonWebModules web.database module - Database abstraction layer to make it possible to run the same SQL on different databases without changing your code.
 * The PythonWebModules web.database.object module - Object relational mapper - treat an SQL database like python objects for easy programming, the SQL is done behind the scenes. Supports one and many to many mappings and can generate HTML forms for the data automatically.
 * [http://www.colorstudy.net/software/webware/SQLBuilder.py SQLBuilder]: SQL generator
 * [http://dustman.net/andy/python/SQLDict SQLDict]: SQL wrapper
 * [http://sqlobject.org/ SQLObject]: ORM
 * [http://roundup.sf.net/ Roundup's hyperdb]: set of constrained data types with relations (many-to-many included) over multiple backends including SQL, metakit and db (yes, relations in an anydbm-backed database :)
 * [http://www.nongnu.org/bazaar/ Bazaar ORM]: Easy to use and powerful abstraction layer between relational database and object oriented application.
 * [http://www.qlime.org/ QLime]'s data access module - a generic object data access module that includes an O-R mapper, an object-CSV file mapper, and is extensible to other data sources. Details of the OR Mapper can be found here: http://www.qlime.org/0.5.1/qlime_or_mapping.html

See also Thinki:PersistenceSystems and Thinki:ObjectOrientedDatabase

There are several wrappers that provide improved or simplified interfaces to SQL databases. Some of these might be referred to as object relational mappers, or ORM in this list -- these create Pythonic objects out of database rows. Others may only help generate SQL, or provide simple mapping support.

See also PersistenceSystems and ObjectOrientedDatabase

HigherLevelDatabaseProgramming (last edited 2018-02-01 18:11:05 by EtienneRobillard)

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