1
0
mirror of https://github.com/django/django.git synced 2025-01-10 18:36:05 +00:00

Updated cx_Oracle arraysize comment.

This commit is contained in:
Tim Graham 2017-03-28 09:41:45 -04:00
parent 78619bcb0a
commit eca6f91be2

View File

@ -387,7 +387,7 @@ class FormatStylePlaceholderCursor:
self.cursor = connection.cursor()
# Necessary to retrieve decimal values without rounding error.
self.cursor.numbersAsStrings = True
# Default arraysize of 1 is highly sub-optimal.
# The default for cx_Oracle < 5.3 is 50.
self.cursor.arraysize = 100
def _format_params(self, params):