2010-05-13 05:29:50 +08:00
|
|
|
SQLObject is a popular Object Relational Manager for providing an
|
|
|
|
object interface to your database, with tables as classes, rows as
|
2011-01-06 19:04:07 +08:00
|
|
|
instances, and columns as attributes. SQLObject includes a
|
|
|
|
Python-object-based query language that makes SQL more abstract, and
|
2010-05-13 05:29:50 +08:00
|
|
|
provides substantial database independence for applications.
|
|
|
|
|
|
|
|
Supports MySQL, PostgreSQL, SQLite, Firebird, Sybase, MSSQL and MaxDB
|
|
|
|
(SAPDB).
|
|
|
|
|
2012-08-27 00:50:58 +08:00
|
|
|
docutils is an optional dependency used to build html docs.
|
2010-05-13 05:29:50 +08:00
|
|
|
|
2011-07-16 08:13:04 +08:00
|
|
|
NOTE: SQLObject checks for supported databases at run time. You can
|
2012-08-27 00:50:58 +08:00
|
|
|
use the MySQL-python and psycopg2 (MySQL and PostrgreSQL support,
|
|
|
|
respectively) optional dependencies. For SQLite, SQLObject can
|
2011-07-16 08:13:04 +08:00
|
|
|
use the standard Python module sqlite3, or an externally installed
|
|
|
|
PySQLite2. For the rest, check the SQLObject documentation for links.
|