]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- ResultProxy and friends always reference the DBAPI connection at the same time
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 5 Dec 2010 05:46:11 +0000 (00:46 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 5 Dec 2010 05:46:11 +0000 (00:46 -0500)
commit8e24584d8d242d40d605752116ac05be33f697d3
tree3bd83f533b0743e4eef7f377e74a62d60adc4995
parentaf75fdf60fd3498ab3c5757e81a5d6b5e52f590d
- ResultProxy and friends always reference the DBAPI connection at the same time
as the cursor.  There is no reason for CursorFairy - the only use case would be,
end-user is using the pool or pool.manage with DBAPI connections, uses a cursor,
deferences the owning connection and continues using cursor.  This is an almost
nonexistent use case and isn't correct usage at a DBAPI level.  Take out CursorFairy.
- move the "check for a dot in the colname" logic out to the sqlite dialect.
lib/sqlalchemy/dialects/sqlite/base.py
lib/sqlalchemy/engine/base.py
lib/sqlalchemy/engine/default.py
lib/sqlalchemy/pool.py
test/sql/test_quote.py