mirror of
https://github.com/mariadb-corporation/mariadb-connector-python.git
synced 2025-08-07 11:39:43 +00:00
Default mode for cursor changed:
Due to several incompatibilites (but also MDEV-23768, where errors can't be triggered in unbuffered) we decided to switch the default mode for cursor class for buffered from False to True.
This commit is contained in:
@ -75,9 +75,10 @@ class Connection(mariadb._mariadb.connection):
|
||||
|
||||
Optional parameters:
|
||||
|
||||
- buffered= False
|
||||
- buffered= True
|
||||
By default the result will be unbuffered, which means before executing
|
||||
another statement with the same connection the entire result set must be fetched.
|
||||
Please note that the default was False for MariaDB Connector/Python versions < 1.1.0.
|
||||
- dictionary= False
|
||||
Return fetch values as dictionary.
|
||||
|
||||
|
Reference in New Issue
Block a user