Client-flags: Client flags

Client-flagsR Documentation

Client flags

Description

Use for the client.flag argument to DBI::dbConnect(), multiple flags can be combined with + or bitwOr(). The flags are provided for completeness. To enforce SSL for the DB connection, add the flag CLIENT_SSL.

See Also

The flags argument at https://mariadb.com/kb/en/library/mysql_real_connect.

Examples

## Not run: 
library(DBI)
library(RMariaDB)
con1 <- dbConnect(MariaDB(), client.flag = CLIENT_COMPRESS)
con2 <- dbConnect(
  MariaDB(),
  client.flag = bitwOr(CLIENT_COMPRESS, CLIENT_SSL)
)

## End(Not run)


r-dbi/RMariaDB documentation built on Dec. 15, 2024, 12:12 p.m.