Download List

Projeto Descrição

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.

2012-03-02 08:03
1.2.2

Foi reparado um erro no SQLiteConnection: desmarque _threadPool em Close ().
Tags: Stable, minor bugfix
A bug was fixed in SQLiteConnection: clear _threadPool on close().

2011-12-05 01:50
1.2.1

Um bug foi corrigido na manipulação do operador (SQLite implementa apenas "%", MySQL só implementa Mod () e PostgreSQL implementa ambos) de módulo.
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

Seqüências de caracteres são tratadas especialmente em Select para permitir selecionar (['id, 'nome'], onde =' valor = 42'). ForeignKey ('Table', refColumn = 'refcol_id') permite ForeignKey apontar para uma coluna não-id. Suporte para PostgreSQL 7.* é descartado; a versão mínima suportada do PostgreSQL é 8.1. Citando as regras mudaram-se para o PostgreSQL: SQLObject usa o E ' Cadeia de caracteres de escape. Um erro causado por psycopg2 recentemente adicionando que um novo atributo booleano não callable autocommit foi corrigido. SQLObject.__doc__ e main.__doc__ já não contêm o número de versão: use sqlobject.version ou version_info.
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

Um bug foi corrigido com Postgres - adicionar aspas no "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

Um bug foi corrigido na SelectResults corte que o impediu de cortar uma fatia (por exemplo, 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