We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d0afe2 commit d627537Copy full SHA for d627537
mysql/toolkit/connector.py
@@ -68,8 +68,10 @@ def execute(self, command):
68
"""Execute a single SQL query without returning a result."""
69
self._cursor.execute(command)
70
self._commit()
71
+ return True
72
73
def executemany(self, command):
74
"""Execute multiple SQL queries without returning a result."""
75
self._cursor.executemany(command)
76
77
0 commit comments