Details
-
Bug
-
Status: Closed (View Workflow)
-
Minor
-
Resolution: Fixed
-
0.9.55
-
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.