我正在尝试使用名为的 R 包建立与我的数据库的连接DatabaseConnector
我正在尝试下面的代码
connectionDetails <- DatabaseConnector::createConnectionDetails(dbms = "postgresql",
user = "xxx",
password = "xxx",
server = "localhost/xxx",
port = "9763")
当我执行上述命令时,出现以下错误
Error: The folder location pathToDriver = ' ' does not exist. Please set the folder to the location containing the JDBC driver. You can download most drivers using the `downloadJdbcDrivers()` function.
但直到几天,它工作正常,任何驱动程序位置都没有问题。我没有对司机的位置等进行任何更改。不知道为什么现在会提出这个问题。请问我可以寻求你的帮助吗?
因此,我尝试了以下两个选项。
a) 我下载了驱动程序并在函数的pathToDriver
参数中键入下载的位置,ConnectionDetails
如下所示。但是,这并不能解决问题
pathToDriver = "C:\\Users\\test\\Downloads\\postgresql-42.2.19.jar")
b)我按照此处文档中的建议设置了一个环境变量。所以,我有一个建议的环境变量是DATABASECONNECTOR_JAR_FOLDER
. 这指向我下载的 jar 文件(Postgresql-42.2.19.jar)
c)后来,我尝试使用更新到我的 jar 文件位置的downloadJdbcDrivers()
函数,pathToDriver
但仍然无法解决问题
我可以寻求你的帮助吗?