Skip to content

Commit

Permalink
Specify immediate argument (#282)
Browse files Browse the repository at this point in the history
- Specify `immediate` argument to `dbSendQuery()`, `dbGetQuery()`, `dbSendStatement()` and `dbExecute()` (#268).
  • Loading branch information
krlmlr committed Sep 23, 2019
2 parents 0756bd6 + 231c191 commit 6f34ab4
Show file tree
Hide file tree
Showing 5 changed files with 204 additions and 15 deletions.
4 changes: 4 additions & 0 deletions R/DBConnection.R
Expand Up @@ -98,6 +98,7 @@ setGeneric("dbDisconnect",
#' @inherit DBItest::spec_result_send_query return
#' @inheritSection DBItest::spec_result_send_query Additional arguments
#' @inheritSection DBItest::spec_result_send_query Specification
#' @inheritSection DBItest::spec_result_send_query Specification for the `immediate` argument
#'
#' @inheritParams dbGetQuery
#' @param statement a character string containing SQL.
Expand Down Expand Up @@ -156,6 +157,7 @@ setGeneric("dbSendQuery",
#' @inherit DBItest::spec_result_send_statement return
#' @inheritSection DBItest::spec_result_send_statement Additional arguments
#' @inheritSection DBItest::spec_result_send_statement Specification
#' @inheritSection DBItest::spec_result_send_statement Specification for the `immediate` argument
#'
#' @inheritParams dbGetQuery
#' @param statement a character string containing SQL.
Expand Down Expand Up @@ -236,6 +238,7 @@ setMethod(
#' @inherit DBItest::spec_result_get_query return
#' @inheritSection DBItest::spec_result_get_query Additional arguments
#' @inheritSection DBItest::spec_result_get_query Specification
#' @inheritSection DBItest::spec_result_get_query Specification for the `immediate` argument
#'
#' @section Implementation notes:
#' Subclasses should override this method only if they provide some sort of
Expand Down Expand Up @@ -300,6 +303,7 @@ setMethod("dbGetQuery", signature("DBIConnection", "character"),
#' @inherit DBItest::spec_result_execute return
#' @inheritSection DBItest::spec_result_execute Additional arguments
#' @inheritSection DBItest::spec_result_execute Specification
#' @inheritSection DBItest::spec_result_execute Specification for the `immediate` argument
#'
#' @inheritParams dbGetQuery
#' @param statement a character string containing SQL.
Expand Down
53 changes: 49 additions & 4 deletions man/dbExecute.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

48 changes: 47 additions & 1 deletion man/dbGetQuery.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

57 changes: 52 additions & 5 deletions man/dbSendQuery.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

57 changes: 52 additions & 5 deletions man/dbSendStatement.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 6f34ab4

Please sign in to comment.