Checks a PostgreSQL database.
DBtestPostgreSQL(
dbname = NULL,
host = NULL,
port = NULL,
user = NULL,
password = NULL,
dbconnopen = FALSE,
showlist = TRUE,
...
)
An S4 object that inherits from DBIConnection via the DBI package if dbconnopen = TRUE, or NULL otherwise. For more information, see `help(DBI::dbConnect)`.
String. Name of the database on the host.
String. Host name.
String. Port number.
String. User name.
String. Password.
Logical. If TRUE, the database connection is returned and not closed.
Logical. If TRUE, prints list of tables in database.
Additional authentication arguments passed to DBI::dbConnect
Tracey S. Frescino