I'm trying to connect to a firebird database using the library RODBC. Since I don't have much, if any, experience with databases and RODBC I'm struggling with it.
I'm using the ODBC driver ODBC_2.0.5.156_x64.
Here is what I tried:
library(RODBC)
path.to.fdb <- "C:/TEMP/local.fdb"
p <- paste("DRIVER=Firebird/InterBase(r) driver; DBNAME=", path.to.fdb)
odbcDriverConnect(p, case = "toupper")
And I get the error message:
1: Status 08004, Code -904, Message [ODBC Firebird Driver] Unable to connect to data source: library 'gds32.dll' failed to load
2: In odbcDriverConnect(paste(p, db, sep = ""), case = "toupper") : ODBC-Connection failed
Maybe that is a stupid question, but is somebody able to helb me? How may I connect to a local firebird database in R?
Here is the fdb file: https://drive.google.com/open?id=1Kw53B-_DsUW1O1Q5GrMnUFrtsBzDoAwn
But installing ODBC_2.0.5.156_x64- notice that for Windows to load DLLs they have to be all the same bitness, all x86 or x64. That means both your application, ODBC library and Firebird client libraries (gds32.dll/fbclient.dll) - Arioch 'The