SQLObject 1.4.0 发布,Python的ORM框架

jopen 11年前

SQLObject是一个对象关系映射框架。数据表映射成Python类,数据映射成 Python实例。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。

发布日志: PostgresConnection was optimized. SQLObject now uses INSERT...RETURNING id to get the autoincremented ID in one query instead of two (INSERT + SELECT id) (PostgreSQL 8.2 required). SQLObject now generates NCHAR/NVARCHAR and N''-quoted strings for MS SQL