Details
-
Type:
New Feature
-
Status: Closed (View Workflow)
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 0.9.55
-
Fix Version/s: 0.9.57
-
Component/s: DBAPI 2.0
-
Labels:None
Description
In order to ease the migration to Connector/Python, consider accept empty tuple or empty list as parameter.
db = mariadb.connect(....) |
qr = db.cursor() |
 |
qr.execute("select 1", []) |
mariadb.DatabaseError.DataError: Invalid number of parameters
|
|