Skip to content

Commit

Permalink
Merge pull request #313 from r-dbi/f-client
Browse files Browse the repository at this point in the history
  • Loading branch information
krlmlr authored Oct 23, 2023
2 parents 30852e5 + be9edb9 commit c943d54
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions R/connect.R
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ MariaDB <- function() {
#' Client flags
#'
#' Use for the `client.flag` argument to [dbConnect()], multiple flags can be
#' combined with a bitwise or (see [Logic]). The flags are provided for
#' completeness.
#' combined with `+` or [bitwOr()].
#' The flags are provided for completeness.
#'
#' @seealso
#' The `flags` argument at https://mariadb.com/kb/en/library/mysql_real_connect.
Expand All @@ -68,7 +68,7 @@ MariaDB <- function() {
#' con1 <- dbConnect(MariaDB(), client.flag = CLIENT_COMPRESS)
#' con2 <- dbConnect(
#' MariaDB(),
#' client.flag = CLIENT_COMPRESS | CLIENT_SECURE_CONNECTION
#' client.flag = bitwOr(CLIENT_COMPRESS, CLIENT_SECURE_CONNECTION)
#' )
#' }
#'
Expand Down
6 changes: 3 additions & 3 deletions man/Client-flags.Rd

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

0 comments on commit c943d54

Please sign in to comment.