[SQL-CVS] r4511 - SQLObject/trunk/docs
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
From: <sub...@co...> - 2012-03-21 17:19:11
|
Author: phd Date: Wed Mar 21 11:18:57 2012 New Revision: 4511 Log: Removed a duplicate entry. Reordered some entries. Modified: SQLObject/trunk/docs/TODO.txt Modified: SQLObject/trunk/docs/TODO.txt ============================================================================== --- SQLObject/trunk/docs/TODO.txt Fri Mar 2 11:29:12 2012 (r4510) +++ SQLObject/trunk/docs/TODO.txt Wed Mar 21 11:18:57 2012 (r4511) @@ -65,6 +65,9 @@ * Protect all .encode(), catch UnicodeEncode exceptions and reraise Invalid. +* More kinds of joins, and more powerful join results (closer to how + `select` works). + * Better joins - automatic joins in .select() based on ForeignKey/MultipleJoin/RelatedJoin. @@ -74,13 +77,13 @@ * Switch from setuptools to distribute. -* py-postgresql driver: http://python.projects.postgresql.org/ - -* pg8000 driver: http://code.google.com/p/pg8000/ +* oursql MySQL bindings: https://launchpad.net/oursql * MySQL Connector/Python: https://launchpad.net/myconnpy -* oursql MySQL bindings: https://launchpad.net/oursql +* pg8000 driver: http://code.google.com/p/pg8000/ + +* py-postgresql driver: http://python.projects.postgresql.org/ * pyfirebirdsql: https://github.com/nakagami/pyfirebirdsql @@ -88,7 +91,8 @@ getattr for internal attributes only; this helps to avoid collisions with internal attributes. -* Or move column values access to a separate namespace, e.g. .c: row.c.name. +* Or move column values access to a separate namespace, e.g. .c: + row.c.column. * Convert documentation to Sphinx_ format and publish it on http://readthedocs.org/ @@ -123,11 +127,6 @@ directly and easily. (First step: get Schema-generating method into sqlmeta class) -* Automatic joins in select queries. - -* More kinds of joins, and more powerful join results (closer to how - `select` works). - * Merge SQLObject.create*, .create*SQL methods with DBPI.create* methods. * Made SQLObject unicode-based instead of just unicode-aware. All internal |