Updated cx_Oracle arraysize comment.

This commit is contained in:
Tim Graham 2017-03-28 09:41:45 -04:00
parent 78619bcb0a
commit eca6f91be2
1 changed files with 1 additions and 1 deletions

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):