-
Notifications
You must be signed in to change notification settings - Fork 138
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SNOW-978294: Write to VARIANT column #821
Comments
I had the same issue, and I got past it by using the Snowflake SQL statement like so:
and using the following
Alternate version for the param construction: |
Unfortunately, this is not the correct answer. I also struggled with this until one of my colleagues informed me that inserts with variant columns is different and fails even in the snowflake app. In order to get this to work, I had to perform an insert select. This can also be done with a parameterized statement as well. Example:
|
I am using snowflake named parameters but it is failing with error below. I have tried different sensible
DbType
options but it won't work.C# Part
Create Table
The text was updated successfully, but these errors were encountered: