[SQL-CVS] r3718 - SQLObject/branches/0.9/docs
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
From: <sub...@co...> - 2008-12-10 15:33:00
|
Author: phd Date: 2008-12-10 08:32:56 -0700 (Wed, 10 Dec 2008) New Revision: 3718 Modified: SQLObject/branches/0.9/docs/SQLObject.txt Log: Documentation update. Modified: SQLObject/branches/0.9/docs/SQLObject.txt =================================================================== --- SQLObject/branches/0.9/docs/SQLObject.txt 2008-12-08 16:58:43 UTC (rev 3717) +++ SQLObject/branches/0.9/docs/SQLObject.txt 2008-12-10 15:32:56 UTC (rev 3718) @@ -1449,13 +1449,9 @@ You can still specify columns (in `_columns`), and only missing columns will be added. -*This is not supported in SQLite* - Runtime Column 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, `addColumn` and `delColumn`, both of @@ -1725,9 +1721,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 changes`_. - SQLite may have concurrency issues, depending on your usage in a multi-threaded environment. |