Opened 16 years ago

Closed 16 years ago

Last modified 13 years ago

#7751 closed (fixed)

Don't assume that connection.autocommit is a callable

Reported by: Leo Soto M. Owned by: nobody
Component: Uncategorized Version: dev
Severity: Keywords: jython, db-be-api
Cc: Triage Stage: Unreviewed
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

source:django/trunk/django/test/utils.py assumes that connection.autocommit is going to be a callable. This is not true for some backends where it is a property (basically all JDBC based backends, also PyODBC and cx_Oracle).

The attached patch fixes this by taking into account the case where autocommit is a property.

Attachments (1)

autocommit.diff (672 bytes ) - added by Leo Soto M. 16 years ago.

Download all attachments as: .zip

Change History (3)

by Leo Soto M., 16 years ago

Attachment: autocommit.diff added

comment:1 by Russell Keith-Magee, 16 years ago

Resolution: fixed
Status: newclosed

(In [7940]) Fixed #7751 -- Added check to allow for the fact that autocommit can be a property, rather than a function on certain database backends. Thanks to Leo Soto for the fix.

comment:2 by Jacob, 13 years ago

milestone: 1.0 beta

Milestone 1.0 beta deleted

Note: See TracTickets for help on using tickets.
Back to Top