Python

When connecting via Python, include the host parameter in your connection function. Example:

con = snowflake.connector.connect(
  user = "[email protected]",
  password = "*******",
  account = "ron123" ,
  host = "snowflake-locator.yukicomputing.com"
)

Last updated