Hi Everyone,
In a Win10 environment, I have R-4.0.3-win, RStudio-1.3.1093, and rtools40-x86_64 installed.
R Tools is set as a Path variable.
I executed the following on RStudio:
install.packages(“devtools”)
devtools::install_github(“OHDSI/DataQualityDashboard”)
devtools::install_github(“OHDSI/DatabaseConnector”)
devtools::install_github(“OHDSI/SqlRender”)
I have a PostgreSQL CDM database on a server.
When I run DataQualityDashboard script I get the following errror:
DataQualityDashboard::executeDqChecks(connectionDetails = connectionDetails,
-
cdmDatabaseSchema = cdmDatabaseSchema,
-
resultsDatabaseSchema = resultsDatabaseSchema,
-
cdmSourceName = cdmSourceName,
-
numThreads = numThreads,
-
sqlOnly = sqlOnly,
-
outputFolder = outputFolder,
-
verboseMode = verboseMode,
-
writeToTable = writeToTable,
-
checkLevels = checkLevels,
-
checkNames = checkNames)
Connecting using PostgreSQL driver
Error in rJava::.jcall(jdbcDriver, “Ljava/sql/Connection;”, “connect”, :
org.postgresql.util.PSQLException: SCRAM authentication is not supported by this driver. You need JDK >= 8 and pgjdbc >= 42.2.0 (not “.jre” versions)
Can someone help?