Josh Koppelman

Results 4 comments of Josh Koppelman

Removing gosip did cause Chrome to popup. However, it looks like the sign-in attempt has an error. I see "connecting to site", then "redirecting", then: "Can't open this page", error...

Unfortunately, that does not solve the problem, even with reboot. It seems I'm going to have to use an alternative credential strategy to get this working, which is a lot...

sqlexecute.py:131 calls databricks.cursor.execute(query) The cursor.execute method (databricks/sql/client.py:453) signature accepts an optional parameter dictionary: ``` def execute( self, operation: str, parameters: Optional[Dict[str, str]] = None ) -> "Cursor": ``` It would...

As I test, I updated sqlexecute.py to hardcode a path on my local (windows) machine: ``` conn = dbsql.connect( server_hostname=self.hostname, http_path=self.http_path, access_token=self.access_token, schema=database, _user_agent_entry=USER_AGENT_STRING, staging_allowed_local_path = 'c:\\', **oauth_params, ) ```...