-
Notifications
You must be signed in to change notification settings - Fork 661
Open
Description
Current in Python version, needs to use ?
cursor.execute(
"update users set name = ? where email = ?",
("Alice Smith", "[email protected]"),
)It would be great to support named parameters like below, thanks!
cursor.execute(
"update users set name = :name where email = :email",
{"name": "Alice Smith", "email": "[email protected]"},
)Metadata
Metadata
Assignees
Labels
No labels