]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- result.last_inserted_ids() should return a list that is identically
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 17 Jun 2007 00:49:08 +0000 (00:49 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 17 Jun 2007 00:49:08 +0000 (00:49 +0000)
commit909758df8edf5e319127216bc2c4ce0fe780de21
tree327f091acae7e0c40933d71d1c3e6183fb38f3d4
parent23525a3ea876f6ab16566c2dd0bbaa7ec1037052
- result.last_inserted_ids() should return a list that is identically
sized to the primary key constraint of the table.  values that were
"passively" created and not available via cursor.lastrowid will be None.
- sqlite: string PK column inserts dont get overwritten with OID [ticket:603]
CHANGES
lib/sqlalchemy/databases/mssql.py
lib/sqlalchemy/databases/mysql.py
lib/sqlalchemy/databases/sqlite.py
lib/sqlalchemy/engine/default.py
test/sql/query.py