[SQL-CVS] r3720 - SQLObject/trunk/docs
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
From: <sub...@co...> - 2008-12-10 15:34:24
|
Author: phd Date: 2008-12-10 08:34:15 -0700 (Wed, 10 Dec 2008) New Revision: 3720 Modified: SQLObject/trunk/docs/News.txt SQLObject/trunk/docs/SQLObject.txt Log: Documentation update. Modified: SQLObject/trunk/docs/News.txt =================================================================== --- SQLObject/trunk/docs/News.txt 2008-12-10 15:33:55 UTC (rev 3719) +++ SQLObject/trunk/docs/News.txt 2008-12-10 15:34:15 UTC (rev 3720) @@ -36,7 +36,7 @@ to work around problems in some drivers and type affinity problem in SQLite. -* Added sqlobject.include.hascol.HashCol - a column type that automatically +* Added sqlobject.include.hashcol.HashCol - a column type that automatically hashes anything going into it, and returns out an object that hashes anything being compared to itself. Basically, it's good for really simple one-way password fields, and it even supports the assignment of None to Modified: SQLObject/trunk/docs/SQLObject.txt =================================================================== --- SQLObject/trunk/docs/SQLObject.txt 2008-12-10 15:33:55 UTC (rev 3719) +++ SQLObject/trunk/docs/SQLObject.txt 2008-12-10 15:34:15 UTC (rev 3720) @@ -1484,13 +1484,9 @@ You can still specify columns (in `_columns`), and only missing columns will be added. -*This is not supported in SQLite* - Runtime Column and Join Changes ------------------------------- -*SQLite does not support this feature* - You can add and remove columns to your class at runtime. Such changes will effect all instances, since changes are made in place to the class. There are two methods of the `class sqlmeta object`_, @@ -1748,9 +1744,6 @@ program quits). SQLite does not restrict the types you can put in a column -- strings can go in integer columns, dates in integers, etc. -SQLiteConnection doesn't support `automatic class generation`_ and -SQLite does not support `runtime column and join changes`_. - SQLite may have concurrency issues, depending on your usage in a multi-threaded environment. |