snowflake-db-net-client
snowflake-db-net-client copied to clipboard
Snowflake .NET Client
Hi, I am using this package to query snowflake data. Recently I have come across one article where it is mentioned that the api's used as part of this package...
Hi everyone! In this thread you can leave your feedback on this project. Since this is a new project I'm looking for a feedback on whether it's useful or not...
I've got some inner objects that are using $id as property names that need to be mapped to an object. Normally I would modify the json serializer settings to ignore...
Related to: [](https://github.com/fixer-m/snowflake-db-net-client/issues/28) Not sure if the design pattern is the best. After getting to a certain point I did wish I had separated some stuff away from SnowflakeClient.cs into...
There doesn't seem to be any way to dispose of the Snowflake Client once the operation is completed. Having embedded snowflake operations seems to lead to socket exhaustion. **System.IO.IOException: 'Unable...
Hi, I'm unable to use Begin; ... Commit; in ExecuteAsync(). I'm getting the following error - " Snowflake.Client.Model.SnowflakeException : Query execution failed. Message: Multiple SQL statements in a single API...
Query Tags provide a way to debug queries in snowflake. Also I think additional custom exceptions around connections and logins could help with flows.
Can you add support for keyfiles instead of username/password? See https://github.com/snowflakedb/snowflake-connector-net (possibly skip private_key_pwd) conn.ConnectionString = "account=testaccount;authenticator=snowflake_jwt;user=testuser;private_key_file={pathToThePrivateKeyFile};private_key_pwd={passwordForDecryptingThePrivateKey};db=testdb;schema=testschema"; _Originally posted by @Ekus in https://github.com/fixer-m/snowflake-db-net-client/issues/1#issuecomment-969158440_
Is there anyway to authenticate via. SSO? I don't mind taking a crack at this, just need to know if it's been implemented or not. Thanks!
* Use JsonContent.Create() for requests in order to avoid the intermediate string serialization. * Use ReadFromJsonAsync() for responses in order to avoid the intermediate string serialization. Also update target framework...