Skip to content
Discussion options

You must be logged in to vote

Hi @rewinter799

Thanks for reaching out!

We are still missing the UI to create new connections with snowflake. However, connections created within the Python session should be inspectable by running %connection_show con

Eg:

import snowflake.connector

# con = snowflake.connector.connect(
#     account='<account>',
#     authenticator='externalbrowser',
#     user='<email>'
# )

con = snowflake.connector.connect(
    account='<account>',
    user='<user>',
    password='<paswd>,
    warehouse="<warehouse>"
)

%connection_show con

Or by clicking the small database icon in the connections pane.

Replies: 3 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by rewinter799
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants