Download List

專案描述

SQLObject is an object-relational mapper, i.e., a library that will wrap your database tables in Python classes and your rows in Python instances. It currently supports MySQL through the 'MySQLdb' package, PostgreSQL through the 'psycopg' package, SQLite, Firebird, MaxDB (SAP DB), MS SQL, and Sybase. It should support Python versions back to 2.4.

System Requirements

System requirement is not defined
Information regarding Project Releases and Project Resources. Note that the information here is a quote from Freecode.com page, and the downloads themselves may not be hosted on OSDN.

2011-06-20 22:18
1.1.0

SelectResults (returned from .select()) is allowed in IN(column, list). A different workaround (connection.text_factory) is used in SQLiteConnection to prevent PySQLite from converting strings to Unicode. It is now possible to declare one encoding for all UnicodeCol's per table (as sqlmeta.dbEncoding) or per connection (as connection.dbEncoding); the default is "utf-8".
標籤: Stable, Major feature enhancements

2011-05-30 22:07
1.0.1

A syntax incompatibility was fixed in SQLiteConnection that prevented SQLObject from being used with Python 2.4.
標籤: Stable, Minor bugfixes

2011-03-29 00:41
1.0.0

A major API change was made: the DB URI parser was changed to use urllib.split*() and unquote(). This means any username, password, and path are allowed in DB URIs if they are properly %-encoded. A new module __version__.py was added. In SQLite, id columns are made AUTOINCREMENT. The "backend" parameter in DB URI is no longer supported; the "driver" parameter should be used instead.
標籤: Stable, Major feature enhancements

2011-03-23 06:10
0.15.1

A bug was fixed in MSSQLConnection. A minor bug was fixed in sqlbuilder.Union.
標籤: Stable, Minor bugfixes

2010-12-07 06:46
0.15.0

Major API change: all signals are sent with the instance (or the class) as the first parameter; the following signals were affected: RowCreateSignal, RowCreatedSignal, and DeleteColumnSignal. Major API change: post-processing functions for all signals are called with the instance as the first parameter. The following signals were affected: RowUpdatedSignal, RowDestroySignal, and RowDestroyedSignal.
標籤: Stable, Major feature enhancements

Project Resources