当我在本地运行我的 python 脚本时,我可以使用 pyodbc 从 dremio 获取数据。为了使其在本地运行,我必须使用指南从以下链接安装 Windows 64 位 odbc 驱动程序。
https://www.dremio.com/drivers/
我不知道,如何在 Databricks 工作区中安装和设置它。可能正因为如此,当我尝试从 databricks 工作区运行相同的代码时,它会引发错误,
连接到dremio的代码是,
cnxn = pyodbc.connect("Driver={};ConnectionType=Direct;HOST={};PORT={};AuthenticationType=Plain;UID={};PWD={}".
format(self.driver, self.host, self.port, self.uid, self.pwd),autocommit=True)
cursor = cnxn.cursor()
请建议我一个解决方案。