summaryrefslogtreecommitdiff
path: root/test/engine/reconnect.py
Commit message (Collapse)AuthorAgeFilesLines
* - unit tests have been migrated from unittest to nose.Mike Bayer2009-06-101-354/+0
| | | | | See README.unittests for information on how to run the tests. [ticket:970]
* - NullPool supports reconnect on failure behavior.Mike Bayer2008-12-271-1/+18
| | | | [ticket:1094]
* Modified fails_on testing decorator to take a reason for the failure.Michael Trier2008-12-121-1/+1
| | | | | This should assist with helping to document the reasons for testing failures. Currently unspecified failures are defaulted to 'FIXME: unknown'.
* - Restored "active rowcount" fetch before ResultProxyMike Bayer2008-11-101-1/+1
| | | | autocloses the cursor. This was removed in 0.5rc3.
* re-enabled memusage and connect tests.Jason Kirtland2008-09-271-3/+3
|
* Added query_cls= override to scoped_session's query_propertyJason Kirtland2008-09-271-3/+3
|
* added gc.collect() for pypy/jython compat, [ticket:1076]Mike Bayer2008-09-161-0/+4
|
* merged r5018 from 0.4 branch, but using contextual_connect() (will fix in ↵Mike Bayer2008-08-101-1/+17
| | | | 0.4 too)
* r4695 merged to trunk; trunk now becomes 0.5.Mike Bayer2008-05-091-24/+27
| | | | 0.4 development continues at /sqlalchemy/branches/rel_0_4
* - added exception wrapping/reconnect support to result setMike Bayer2008-02-251-2/+36
| | | | | | fetching. Reconnect works for those databases that raise a catchable data error during results (i.e. doesn't work on MySQL) [ticket:978]
* - updated the naming scheme of the base test classes in test/testlib/testing.py;Mike Bayer2008-02-111-2/+2
| | | | | tests extend from either TestBase or ORMTest, using additional mixins for special assertion methods as needed
* - testbase is gone, replaced by testenvJason Kirtland2008-01-121-40/+40
| | | | | | - Importing testenv has no side effects- explicit functions provide similar behavior to the old immediate behavior of testbase - testing.db has the configured db - Fixed up the perf/* scripts
* - added is_disconnect() support for oracleMike Bayer2007-12-291-22/+22
| | | | | - fixed _handle_dbapi_error to detect endless loops, doesn't call rollback/cursor.close etc. in case of disconnect
* - auto-reconnect support improved; a Connection can now automaticallyMike Bayer2007-12-191-16/+199
| | | | | | | | | | reconnect after its underlying connection is invalidated, without needing to connect() again from the engine. This allows an ORM session bound to a single Connection to not need a reconnect. Open transactions on the Connection must be rolled back after an invalidation of the underlying connection else an error is raised. Also fixed bug where disconnect detect was not being called for cursor(), rollback(), or commit().
* merging 0.4 branch to trunk. see CHANGES for details. 0.3 moves to ↵Mike Bayer2007-07-271-5/+7
| | | | maintenance branch in branches/rel_0_3.
* a rudimental reconnect/pool auto-dispose test. not super-comprehensive but ↵Mike Bayer2007-04-221-0/+95
better than nothing, will close #516