Closed
Description
Migrated issue, originally created by Anonymous
In the mysqlconnector, the default setting for raise_on_warnings is set after the url string settings are read. This prevents the user from overriding the default setting if necessary.
Users who do not have '?raise_on_warnings=False' or '?buffered=False' in their url string will not notice any difference.
Attachments: mysqlconnector.patch
Metadata
Metadata
Assignees
Type
Projects
Relationships
Development
No branches or pull requests
Activity
sqlalchemy-bot commentedon Jun 20, 2012
Michael Bayer (@zzzeek) wrote:
thanks
sqlalchemy-bot commentedon Jun 20, 2012
Changes by Michael Bayer (@zzzeek):
sqlalchemy-bot commentedon Sep 23, 2012
Michael Bayer (@zzzeek) wrote:
this is on hold as the current released and development versions of mysql-connector python are broken and non-functional with SQLAlchemy. See https://answers.launchpad.net/myconnpy/+question/209397 .
sqlalchemy-bot commentedon Sep 23, 2012
Changes by Michael Bayer (@zzzeek):
sqlalchemy-bot commentedon Oct 13, 2013
Michael Bayer (@zzzeek) wrote:
the defaults just needed to be set correctly:
0cea9fd 0.8
366e74b 0.9
sqlalchemy-bot commentedon Oct 13, 2013
Changes by Michael Bayer (@zzzeek):
sqlalchemy-bot commentedon Jul 9, 2014
Michael Bayer (@zzzeek) wrote:
this is wrong. "buffered" and "raise on warning" default to False. No clue why these are defaulitng to True.
sqlalchemy-bot commentedon Jul 9, 2014
Changes by Michael Bayer (@zzzeek):
sqlalchemy-bot commentedon Jul 9, 2014
Changes by Michael Bayer (@zzzeek):
sqlalchemy-bot commentedon Jul 9, 2014
Changes by Michael Bayer (@zzzeek):
sqlalchemy-bot commentedon Jul 9, 2014
Michael Bayer (@zzzeek) wrote:
MySQLconnector. This was set at True for some reason. The "buffered"
flag unfortunately must stay at True as MySQLconnector does not allow
a cursor to be closed unless all results are fully fetched. fixes mysqlconnector cannot override settings #2515
be getting some mysqlconnector failures now
→ 2b85e80
sqlalchemy-bot commentedon Jul 9, 2014
Changes by Michael Bayer (@zzzeek):