cursor.execute(query,vars_list)
Function
This method executes the parameterized SQL statements (that is, placeholders instead of SQL literals). The psycopg2 module supports placeholders marked with %s.
Prototype
cursor.execute(query,vars_list)
Parameters
Keyword |
Description |
---|---|
query |
SQL statement to be executed. |
vars_list |
Variable list, which matches the %s placeholder in the query. |
Return Value
None
Examples
For details, see Example: Common Operations.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.