Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Python > SQLObject 0.10.5

Reply
Thread Tools

SQLObject 0.10.5

 
 
Oleg Broytmann
Guest
Posts: n/a
 
      05-06-2009
Hello!

I'm pleased to announce version 0.10.5, a minor bugfix release of 0.10 branch
of SQLObject.


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/mailma...object-discuss

Archives:
http://news.gmane.org/gmane.comp.python.sqlobject

Download:
http://cheeseshop.python.org/pypi/SQLObject/0.10.5

News and changes:
http://sqlobject.org/News.html


What's New
==========

News since 0.10.4
-----------------

* Another unicode-related patch for MySQL; required because different
versions of MySQLdb require different handling::

- MySQLdb < 1.2.1: only ascii
- MySQLdb = 1.2.1: only unicode
- MySQLdb > 1.2.1: both ascii and unicode

* Setup requires FormEncode version 1.1.1+.

* Fixed a minor bug - pass name to DecimalValidator.

* Fixed a bug in InheritableIteration - pass connection to child
klass.select().

* sqlmeta.getColumns() becomes classmethod.

* A bug was fixed in PostgresConnection.columnsFromSchema() - foreign keys
are now recognized and created as proper ForeignKey with correct
column name and table name.

* Bugs in PostgresConnection and MSSQLConnection related to properties was
fixed. A note for developers: from now on properties in DBConnection
classes are forbidden as they don't work with Transaction -
Transaction.__getattr__() cannot properly wrap 'self' so a property is
called with wrong 'self'.

* Transaction instances now explicitly raises TypeError on close() -
without this calling Transaction.close() calls connection.close() which
is wrong.

* A bug in SQLiteConnection.columnsFromSchema() that led to an infinite
loop was fixed.

For a more complete list, please see the news:
http://sqlobject.org/News.html

Oleg.
--
Oleg Broytmann http://phd.pp.ru/
Programmers don't die, they just GOSUB without RETURN.
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
[ANN] SQLObject 0.6.1 Ian Bicking Python 0 01-26-2005 05:55 AM
Options, ConfigParser, modules, and SQLObject connections Robin Munn Python 1 10-12-2004 07:17 PM
SQLObject ordering Kevin Dahlhausen Python 0 02-26-2004 06:52 AM
ANN: SQLObject 0.5 Ian Bicking Python 0 11-01-2003 09:30 PM
ANN: SQLObject 0.4 Ian Bicking Python 0 07-05-2003 04:57 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57