-
Notifications
You must be signed in to change notification settings - Fork 94
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
Question: Why is uri
a required argument?
#890
Comments
Hmm, it probably shouldn't be. #841 is a similar question about R |
Interestingly this appears to be an issue solely with the documentation. Looking at the code, as far as I can tell "uri" isn't required, you can specify the connection options just like in the python connector. python connector option --> adbc connection option
All of these are in the documentation along with the available options for |
We might just need some examples then. |
Hello! There is a check in the cython code to ensure that uri is not None. If |
#923 will make |
It still doesn't work at all and there's zero documentation on how it should be configured. Essentially making the connector totally unusable when password includes any special symbols (because connecting with URI fails miserably too). |
Does https://arrow.apache.org/adbc/current/driver/snowflake.html#sso-authentication help?
All options: https://arrow.apache.org/adbc/current/driver/snowflake.html#client-options |
It's not an SSO, just regular, normal account with |
The example is for SSO, but it's to demonstrate that the option is The URL-decoding is...odd, but that appears to be a behavior of the Snowflake client or server |
I'm currently using
snowflake-connector-python
like this:Then I use
conn
to query whatever database/schema I may need.In contrast, I'm looking at the documentation here:
https://arrow.apache.org/adbc/0.5.1/driver/snowflake.html
It seems that
uri
is required, and every accepteduri
format asks for a database.Can anyone clarify how to use this driver the same way I use
snowflake-connector-python
?Thanks for your time and consideration.
The text was updated successfully, but these errors were encountered: