Re: [SQLObject] SQLObject 0.6 (and 0.5.3)
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
From: Brian R. <br...@se...> - 2004-09-22 12:59:07
|
Good Job! Are there any backward compatibility considerations when users are moving from .5 to .6? Thought I would ask in advance. On Sep 22, 2004, at 1:14 AM, Ian Bicking wrote: > I've made a long-overdue release of SQLObject 0.6, and a final bug-fix > release for the 0.5 series. > > 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, > and Firebird. It also has newly added support for Sybase and MaxDB > (also known as SAPDB). > > > Where is SQLObject > ================== > > Site: > http://sqlobject.org > > Mailing list: > https://lists.sourceforge.net/mailman/listinfo/sqlobject-discuss > > Archives: > http://news.gmane.org/gmane.comp.python.sqlobject > > Download: > http://prdownloads.sourceforge.net/sqlobject/SQLObject-0.6.tar.gz? > download > > News and changes: > http://sqlobject.org/docs/News.html > > > What's New > ========== > > In 0.5.3: some small bug fixes, and an important fix when iterating > over selects in threaded environments. > > In 0.6: > > The "SQLObject" module has been renamed "sqlobject". > > To fetch objects from the database, use MyClass.get(id) (instead of > MyClass(id)). To create/insert objects, use MyClass(col=value, ...) > (instead of MyClass.new(col=value, ...)). > > Better support for constraints. > > Connections given using URLs, like 'mysql://user:pass@localhost/dbname' > > Optional lazy updates -- SQL UPDATE executed only on demand. > > For a more complete list, please see the news: > http://sqlobject.org/docs/News.html > > -- > Ian Bicking / ia...@co... / http://blog.ianbicking.org > > > ------------------------------------------------------- > This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170 > Project Admins to receive an Apple iPod Mini FREE for your judgement on > who ports your project to Linux PPC the best. Sponsored by IBM. > Deadline: Sept. 24. Go here: http://sf.net/ppc_contest.php > _______________________________________________ > sqlobject-discuss mailing list > sql...@li... > https://lists.sourceforge.net/lists/listinfo/sqlobject-discuss |