Changeset 6965
- Timestamp:
- 12/21/07 12:49:07 (1 year ago)
- Files:
-
- django/trunk/django/db/backends/oracle/base.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/db/backends/oracle/base.py
r6963 r6965 433 433 except ValueError: 434 434 pass 435 try: 436 self.connection.stmtcachesize = 20 437 except: 438 # Django docs specify cx_Oracle version 4.3.1 or higher, but 439 # stmtcachesize is available only in 4.3.2 and up. 440 pass 435 441 if not cursor: 436 442 cursor = FormatStylePlaceholderCursor(self.connection)
