We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
just throwing this here, maybe it's worth putting in a doc somewhere some day
library(RPostgres) library(dplyr) library(dbplyr) library(tibble) library(rls) # docker pull postgres # docker run --name my_postgres -e POSTGRES_USER=myuser -e POSTGRES_PASSWORD=mypassword -e POSTGRES_DB=mydatabase -p 5432:5432 -d postgres Sys.setenv( "PGHOST" = "localhost", "PGPORT" = 5432, "PGUSER" = "myuser", "PGPASSWORD" = "mypassword", "PGDATABASE" = "mydatabase" ) con <- dbConnect( RPostgres::Postgres(), dbname = Sys.getenv("PGDATABASE"), host = Sys.getenv("PGHOST"), port = Sys.getenv("PGPORT"), user = Sys.getenv("PGUSER"), password = Sys.getenv("PGPASSWORD") ) dbListTables(con) devtools::test() covr::report()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
just throwing this here, maybe it's worth putting in a doc somewhere some day
The text was updated successfully, but these errors were encountered: