Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
SQLObject-1.0.0-py2.6.egg | 2011-03-28 | 349.9 kB | |
SQLObject-1.0.0-py2.5.egg | 2011-03-28 | 350.5 kB | |
SQLObject-1.0.0-py2.4.egg | 2011-03-28 | 347.8 kB | |
SQLObject-1.0.0.tar.gz | 2011-03-28 | 257.6 kB | |
README.rst | 2011-03-28 | 1.5 kB | |
Totals: 5 Items | 1.3 MB | 0 |
Hello!
I'm really happy to announce SQLObject version 1.0.0!
What is SQLObject
SQLObject is an object-relational mapper. Your database tables are described as classes, and rows are instances of those classes. SQLObject is meant to be easy to use and quick to get started with.
SQLObject supports a number of backends: MySQL, PostgreSQL, SQLite, Firebird, Sybase, MSSQL and MaxDB (also known as SAPDB).
Where is SQLObject
Site: http://sqlobject.org
Development: http://sqlobject.org/devel/
Mailing list: https://lists.sourceforge.net/mailman/listinfo/sqlobject-discuss
Archives: http://news.gmane.org/gmane.comp.python.sqlobject
Download: http://cheeseshop.python.org/pypi/SQLObject/1.0.0
News and changes: http://sqlobject.org/News.html
What's New
Features & Interface
- Major API change: DB URI parser was changed to use urllib.split*() and unquote(). This means any username/password/path are allowed in DB URIs if they are properly %-encoded, and DB URIs are automatically unquoted.
- A new module __version__.py was added. New variables version (string) and version_info (5-tuple: major, minor, micro, release level, serial) are imported into sqlobject namespace.
- In SQLite, id columns are made AUTOINCREMENT.
- Parameter backend in DB URI is no longer supported, use parameter driver.
For a more complete list, please see the news: http://sqlobject.org/News.html