odbc icon indicating copy to clipboard operation
odbc copied to clipboard

Connect to ODBC databases (using the DBI interface)

Results 155 odbc issues
Sort by recently updated
recently updated
newest added

See: https://github.com/r-dbi/odbc/blob/14ca101bd1f1922f6e093b06c08dfb921d3451b7/R/driver-impala.R#L4 May have been resolved since the comment was introduced.

impala

Some notes-to-self after an afternoon trying to make this happen... the following from Jim remains true: https://github.com/r-dbi/odbc/blob/e8b68fa5de44bf3d3cd7cfedb204bf8f7c260f16/vignettes/develop.Rmd#L203 😝 Oracle Cloud Free as a quick setup to test against is a...

oracle
documentation

### Issue Description and Expected Result `dbExecute()` and similar commands (like `dbGetQuery()`, `dbWriteTable()`) do not always raise an error when a `throw` or `raiserror` occurs in SQL Server. ### Database...

### Issue Description and Expected Result The current implementation of the odbc package sets the name of every database connection to "Default" when connecting to Oracle databases at work. This...

oracle

Currently when determining the structure of the object tree for the connection, [we call](https://github.com/r-dbi/odbc/blob/main/R/connection-pane.R#L34) odbcConnectionCatalogs/Schemas just to verify if there is a non-trivial result. For example, `if length(odbcConnectionSchemas(conn)) then `....

feature
connection-pane :window:

```R library(odbc) con

reprex

Supported arguments: ``` Database (string) name of SQLite2/3 database file; default empty PWD (string) password when built with SEE support; default empty Timeout (integer) lock time out in milliseconds; default...

feature
sqlite

So we're skipping the same core tests on all backends. And gate behind standard env var so it's easy to turn off if desired.

upkeep

And eliminate double dispatch for `dbExistsTable()` and friends ```R setMethod( "dbExistsTable", c("OdbcConnection"), function(conn, name, ...) { if (is(name, "SQL") || inherits(x, "AsIs")) { # converts to an Id object name