You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 22, 2024. It is now read-only.
File R/db_conn-generic.R has line eval(parse(text = paste("suppressMessages(library(", conn.pkg, "))"))),
where conn.pkg can currently only be RPostgreSQL. This pollutes the namespace by attaching all objects from RPostgreSQL. We should avoid this by using the scope operator :: instead of attaching the objects.
The text was updated successfully, but these errors were encountered:
iyerr3
changed the title
Removing attaching of RPostgresql package to avoid polluting namespace
Remove attaching of RPostgresql package to avoid polluting namespace
Oct 24, 2016
iyerr3
changed the title
Remove attaching of RPostgresql package to avoid polluting namespace
Avoid attaching RPostgreSQL to connect to database
Oct 24, 2016
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
File
R/db_conn-generic.R
has lineeval(parse(text = paste("suppressMessages(library(", conn.pkg, "))")))
,where
conn.pkg
can currently only beRPostgreSQL
. This pollutes the namespace by attaching all objects fromRPostgreSQL
. We should avoid this by using the scope operator::
instead of attaching the objects.The text was updated successfully, but these errors were encountered: