Author: phd
Date: 2004-12-07 17:53:51 +0000 (Tue, 07 Dec 2004)
New Revision: 463
Modified:
trunk/SQLObject/README.txt
trunk/SQLObject/docs/News.txt
trunk/SQLObject/examples/config.py
trunk/SQLObject/tests/SQLObjectTest.py
Log:
Removed deadly broken dbm connection; updated docs.
Modified: trunk/SQLObject/README.txt
===================================================================
--- trunk/SQLObject/README.txt 2004-12-07 17:28:19 UTC (rev 462)
+++ trunk/SQLObject/README.txt 2004-12-07 17:53:51 UTC (rev 463)
@@ -10,9 +10,9 @@
mapper, i.e., a library that will wrap your database tables in Python
classes, and your rows in Python instances.
-It absolutely requires Python 2.2 or higher. It currently supports
-MySQL through the `MySQLdb` package, PostgreSQL through the
-`psycopg` package, SQLite, Firebird, and a DBM-based backend.
+It absolutely requires Python 2.2 or higher. It currently supports
+MySQL through the `MySQLdb` package, PostgreSQL through the
+`psycopg` package, SQLite, Firebird, MaxDB (SAP DB) and Sybase.
For more information please see the documentation in
``docs/SQLObject.html``
Modified: trunk/SQLObject/docs/News.txt
===================================================================
--- trunk/SQLObject/docs/News.txt 2004-12-07 17:28:19 UTC (rev 462)
+++ trunk/SQLObject/docs/News.txt 2004-12-07 17:53:51 UTC (rev 463)
@@ -15,6 +15,8 @@
* The long broken and unused ``DBMConnection`` has been removed.
+* Removed DBMConnection.
+
Features
--------
Modified: trunk/SQLObject/examples/config.py
===================================================================
--- trunk/SQLObject/examples/config.py 2004-12-07 17:28:19 UTC (rev 462)
+++ trunk/SQLObject/examples/config.py 2004-12-07 17:53:51 UTC (rev 463)
@@ -13,8 +13,6 @@
conn = 'postgres://test@localhost/testdb'
conn = SQLiteConnection('database.db')
conn = 'sqlite://path/to/database.db'
-conn = DBMConnection('database/')
-conn = 'dbm://path/to/database/'
## end snippet
"""
#conn = MySQLConnection(user='test', db='test')
Modified: trunk/SQLObject/tests/SQLObjectTest.py
===================================================================
--- trunk/SQLObject/tests/SQLObjectTest.py 2004-12-07 17:28:19 UTC (rev 462)
+++ trunk/SQLObject/tests/SQLObjectTest.py 2004-12-07 17:53:51 UTC (rev 463)
@@ -28,12 +28,6 @@
supportTransactions=False,
supportExpressionIndex=False)
-def dbmConnection():
- return 'dbm:///data', d(
- supportAuto=False,
- supportRestrictedEnum=False,
- supportTransactions=False)
-
def postgresConnection():
return 'postgres:///test', d()
|