We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
DBI::dbConnect(odbc::databricks())
Error in driver_config$path
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Establishing a odbc connection works as expect for
args <- list( odbc::databricks(), auth_accesstoken = token, workspace = workspace, authMech = 11, auth_flow = 0, HTTPPath = httppath ) conn <- do.call(DBI::dbConnect, args)
> conn <OdbcConnection> Spark SQL Database: foundata_investigations_bronze_prd Spark SQL Version: 3.5.0
However, trying to "re-connect" to the cluster fails
> do.call(DBI::dbConnect, args) Error in driver_config$path : $ operator is invalid for atomic vectors
The traceback points at odbc:::configure_simba, which was introduced in odbc v.1.6.0
odbc:::configure_simba
5: configure_simba(spark_simba_config(args$driver), action = "modify") 4: .local(drv, ...) 3: (new("standardGeneric", .Data = function (drv, ...) { ans <- standardGeneric("dbConnect") .valueClassTest(ans, "DBIConnection", "dbConnect") }, generic = structure("dbConnect", package = "DBI"), package = "DBI", group = list(), valueClass = "DBIConnection", signature = "drv", default = NULL, skeleton = (function (drv, ...) stop(gettextf("invalid call in method dispatch to '%s' (no default method)", "dbConnect"), domain = NA))(drv, ...)))(new("DatabricksOdbcDriver", ), auth_accesstoken = "xxxx", workspace = "xxxx", authMech = 11, auth_flow = 0, HTTPPath = "xxx") 2: (new("standardGeneric", .Data = function (drv, ...) { ans <- standardGeneric("dbConnect") .valueClassTest(ans, "DBIConnection", "dbConnect") }, generic = structure("dbConnect", package = "DBI"), package = "DBI", group = list(), valueClass = "DBIConnection", signature = "drv", default = NULL, skeleton = (function (drv, ...) stop(gettextf("invalid call in method dispatch to '%s' (no default method)", "dbConnect"), domain = NA))(drv, ...)))(new("DatabricksOdbcDriver", ), auth_accesstoken = "xxx", workspace = "xxxx", authMech = 11, auth_flow = 0, HTTPPath = "xxx") 1: do.call(DBI::dbConnect, args)
> sessionInfo() R version 4.4.2 (2024-10-31) Platform: aarch64-apple-darwin24.3.0 Running under: macOS Sequoia 15.3.1 Matrix products: default BLAS: /Users/xxxx/.asdf/installs/R/4.4.2/lib/R/lib/libRblas.dylib LAPACK: /Users/xxx/.asdf/installs/R/4.4.2/lib/R/lib/libRlapack.dylib; LAPACK version 3.12.0 locale: [1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8 time zone: Europe/Copenhagen tzcode source: internal attached base packages: [1] stats graphics grDevices utils datasets methods base other attached packages: [1] odbc_1.6.0 DBI_1.2.3 loaded via a namespace (and not attached): [1] bit_4.5.0.1 compiler_4.4.2 cli_3.6.4 hms_1.1.3 [5] Rcpp_1.0.14 bit64_4.6.0-1 vctrs_0.6.5 blob_1.2.4 [9] jsonlite_1.9.0 lifecycle_1.0.4 pkgconfig_2.0.3 rlang_1.1.5
Installing
devtools::install_github("https://github.com/r-dbi/odbc", ref = "v1.5.0")
and re-running the previous example works as expected. That is, calling
do.call(DBI::dbConnect, args)
a second time will return a odbc connection. The error does not occur on linux, as a consequence of
configure_simba <- function(driver_config, action = "modify", call = caller_env()) { if (!is_macos()) { return(invisible()) }
The text was updated successfully, but these errors were encountered:
Experiencing the same issue
Sorry, something went wrong.
Thanks for the report!
Can replicate. We should be able to address soon. Stay tuned.
Thank you both for the reports. Do you have the ability to test development branches? If so can you test if this branch resolves the issue:
https://github.com/detule/odbc/tree/bugfix/simba_config
Thank you!
No branches or pull requests
Establishing a odbc connection works as expect for
However, trying to "re-connect" to the cluster fails
The traceback points at
odbc:::configure_simba
, which was introduced in odbc v.1.6.0Installing
and re-running the previous example works as expected. That is, calling
a second time will return a odbc connection. The error does not occur on linux, as a consequence of
The text was updated successfully, but these errors were encountered: