Hi,
I'm trying to connect a database from HyperfileSQL (HFSQL) in Rstudio with an ODBC connector.
Here is the code i used :
library(DBI)
library(odbc)
connexion<- DBI::dbConnect(odbc::odbc(),
Driver = "HFSQL",
Server = "server ip",
Database = "data base name",
UserName = "username",
Password = "password",
)
I get " Error: nanodbc/nanodbc.cpp:1021: S1000: Impossible to connect the caractere chain is unsuficcient"
I have no idea why...