Open DSLituiev opened 4 months ago
workaround: wrap the connection into a new S4 class with jc
slot copied from the original connection object:
setClass("Oracle", slots=list(),
contains = "JDBCConnection")
conn_fixed <- new("Oracle", jc = slot(conn, "jc"))
The oracle backend does not get recognised (v. 2.5.0 and main branch @HEAD)
When I force backend to Oracle it works, but I am not sure how to force it in
tbl
statement:Trying to print the table gets an error:
Here are some attempts to get to why it does not use the proper backend: