cursor.executemany(query,vars_list)
Description
This method executes an SQL command against all parameter sequences or mappings found in the sequence SQL.
Prototype
cursor.executemany(query,vars_list)
Parameter
Keyword |
Description |
---|---|
query |
SQL statement that you want to execute. |
vars_list |
Variable list, which matches the %s placeholder in the query. |
Return Value
None
Example
For details, see Examples: Common Operations.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.