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.
The flags
argument at https://mariadb.com/kb/en/library/mysql_real_connect.
## Not run: library(DBI) library(RMariaDB) con1 <- dbConnect(MariaDB(), client.flag = CLIENT_COMPRESS) con2 <- dbConnect( MariaDB(), client.flag = CLIENT_COMPRESS | CLIENT_SECURE_CONNECTION ) ## End(Not run)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.