Details
-
Type:
Bug
-
Status: Closed (View Workflow)
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 0.9.55
-
Fix Version/s: 0.9.56
-
Component/s: Generic
-
Labels:None
Description
mysql.connector supports bool type in cursor parameter
db = mysql.connector.connect(....) |
c = db.cursor() |
c.execute('select %s', (True, )) |
c.fetchone()
|
it returns: (1, )
but, MariaDB connector does not support.