dittodb icon indicating copy to clipboard operation
dittodb copied to clipboard

dittodb: A Test Environment for DB Queries in R

Results 23 dittodb issues
Sort by recently updated
recently updated
newest added

#187 - Simple update, I changed all `stop()` call to `rlang::abort()` - I did not change the `stop()` calls in `R/vctrs_s3_register.R` Did you want the wording updated in these? The...

[`rlang::abort`](https://rlang.r-lib.org/reference/abort.html) makes for much nicer error messages (see below). So far they haven't been used, but there are only 3 `stop`s, so would be easy to transition those. ``` rlang::abort(...

ODBC actually returns connections of classes that it defines itself. As of ODBC 1.4.2, not all of these are exported (e.g. `PostgreSQL` is the resultant class of the connection, but...

Dear developers of {dittodb}, I've been using {dittodb} for mocking an Oracle database. Even though it is not listed as one of the supported DB, it is possible to use...

It would be quite handy to be able to test the behaviour of the code with different results from the query: what if the table is empty? What if the...

Prepare for release: * [x] Check [current CRAN check results](https://cran.rstudio.org/web/checks/check_results_dittodb.html) * [x] [Polish NEWS](https://style.tidyverse.org/news.html#news-release) * [x] `urlchecker::url_check()` * [x] `devtools::check(remote = TRUE, manual = TRUE)` * [x] `devtools::check_win_devel()` * [x]...

Add subsection to the "Things to be careful about" section explaining issues with non-ASCII characters in the db responses. See https://github.com/ropensci/dittodb/issues/165

Using the vignette example with the nycflights data, if I change the query to a simple `select count(*)` the saved fixture has a value of 0 instead of the actual...

### Brief description of the problem Currently parameters of e.g. `dbSendQuery` are not considered when storing the statement and its return value. When capturing two identical queries with different parameters...