You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thedetailsareinthe`What did you expect to see?`section.
What did you expect to see?
I encountered an error while trying to insert a record into Snowflake using the Python connector. Below are the sanitized table creation command, Python code snippet, and the error message.
hey @kodeninja ,thanks for reaching out.
you're using qmark style parameter in your insertion, by default the connector user pyformat style parameter.
to make it work, you just need to set paramstyle to "qmark" like the follow before you run your code:
Python version
Python 3.11.7
Operating system and processor architecture
macOS-13.4.1-arm64-arm-64bit
Installed packages
What did you do?
What did you expect to see?
I encountered an error while trying to insert a record into Snowflake using the Python connector. Below are the sanitized table creation command, Python code snippet, and the error message.
Table Setup:
Python Code Snippet:
Insert statement (read from yaml file):
Error Message:
While trying to execute the insert operation, I encountered the following error related to string formatting conversion:
Could you help me understand why this string formatting error is occurring and how to resolve it?
The text was updated successfully, but these errors were encountered: