We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
check_dots_used()
dbGetQuery()
e.g. dbGetQuery() doesn't complain about extra arguments. I guess this affects all backends.
library(DBI) con <- dbConnect(RSQLite::SQLite(), ":memory:") DBI::dbGetQuery( con, "SELECT 1", extra_arg = 1 ) #> 1 #> 1 1
Created on 2023-04-25 with reprex v2.0.2
The text was updated successfully, but these errors were encountered:
Thanks. We could experiment with adding rlang to "Suggests" and calling it only if it is installed. No idea if it works for S4 methods.
Sorry, something went wrong.
No branches or pull requests
e.g.
dbGetQuery()
doesn't complain about extra arguments. I guess this affects all backends.Created on 2023-04-25 with reprex v2.0.2
The text was updated successfully, but these errors were encountered: