DBI icon indicating copy to clipboard operation
DBI copied to clipboard

A database interface (DBI) definition for communication between R and RDBMSs

Results 25 DBI issues
Sort by recently updated
recently updated
newest added

I created an [issue](https://github.com/r-dbi/RPostgres/issues/152) (quite a while back!) specifically asking about this with RPostgres, where libpq has functionality to handle multi-statement SQL being sent to the DB server. The recommendation...

``` r library(DBI) data [1] -4.336809e-19 sql_exp [1] "2.73927602739726037e-03" as.numeric(sql_exp) - data #> [1] 0 ``` Created on 2022-12-09 with [reprex v2.0.2](https://reprex.tidyverse.org) We could use `sprintf("%.17e")` as in the reprex...

bug
help wanted

I just learned that (some) databases seem to (silently?) change invalid column names (see https://github.com/tidyverse/dbplyr/issues/1016). This causes issues with the new optimisation in `dbplyr::copy_to()` where column names do not match....

I found arguments like `Authentication` through SO, but I'm wondering how to find these organically through documentation. Under the `dbConnect()` documentation it writes: `... authentication arguments needed by the DBMS...

docs

This is one of my typical workflow: `con (say odbc) --> tbl --> some_dplyr_ops --> save (as a table)`. Note that data does NOT come into the R's memory. But...