Downloadliste

Projektbeschreibung

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.

Systemanforderungen

Die Systemvoraussetzungen sind nicht definiert
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.

2012-03-02 08:03
1.2.2

Ein Fehler wurde behoben in SQLiteConnection: _threadPool auf close() deaktivieren.
Tags: Stable, minor bugfix
A bug was fixed in SQLiteConnection: clear _threadPool on close().

2011-12-05 01:50
1.2.1

Ein Fehler wurde behoben in der Handhabung der modulo-Operator (SQLite implementiert nur "%", MySQL nur implementiert MOD() und PostgreSQL implementiert beide).
Tags: Stable, minor bugfix
A bug was fixed in handling the modulo operator (SQLite implements only "%", MySQL only implements MOD(), and PostgreSQL implements both).

2011-11-21 05:18
1.2.0

Zeichenfolgen werden behandelt speziell in auswählen, um die Option zulassen (['Id, 'Name'], wobei = "Wert = 42'). ForeignKey ('Table', RefColumn = 'Refcol_id') ermöglicht das ForeignKey auf eine nicht-Id-Spalte hinzu. Unterstützung für PostgreSQL 7.* gedropped wird; die minimale unterstützte Version von PostgreSQL ist 8.1. Zitieren Regeln haben sich geändert für PostgreSQL: SQLObject verwendet die E'' Zeichenfolge zu entkommen. Ein Fehler verursacht durch psycopg2 vor kurzem hinzufügen, dass ein neues Boolean nicht aufrufbaren Autocommit-Attribut festgelegt wurde. Sqlobject.__doc__ und Main.__doc__ nicht mehr enthalten die Versionsnummer: sqlobject.version oder Version_info verwenden.
Tags: Stable
Strings are treated specially in Select to allow Select(['id, 'name'], where='value = 42'). ForeignKey('Table', refColumn='refcol_id') allows ForeignKey to point to a non-id column. Support for PostgreSQL 7.* is dropped; the minimal supported version of PostgreSQL is 8.1. Quoting rules have changed for PostgreSQL: SQLObject uses the E'' escape string. A bug caused by psycopg2 recently adding a new Boolean non-callable autocommit attribute was fixed. sqlobject.__doc__ and main.__doc__ no longer contain the version number: use sqlobject.version or version_info.

2011-08-31 05:36
1.1.3

Es wurde ein Bug mit Postgres fester - add zitiert in "SET client_encoding" query.
Tags: Stable, minor bugfix
A bug was fixed with Postgres - add quotes in "SET client_encoding" query.

2011-08-08 22:27
1.1.2

Es wurde ein Bug in SelectResults Slicing, dass verhindert Sie von Slicing eine Scheibe fest (z. B. my_results [: 20] [1:5]).
Tags: minor bugfix, Stable
A bug was fixed in SelectResults slicing that prevented you from slicing a slice (for example, my_results[:20][1:5]).

Project Resources