Learn R Programming

RPostgreSQL (version 0.7-5)

dbListTables-methods: List items from an PostgreSQL DBMS and from objects

Description

These methods are straight-forward implementations of the corresponding generic functions.

Arguments

Methods

drv

an PostgreSQLDriver.

conn

an PostgreSQLConnection.

name

a character string with the table name.

...

currently not used.

References

See the Database Interface definition document DBI.pdf in the base directory of this package or https://cran.r-project.org/package=DBI.

See Also

Examples

Run this code
if (FALSE) {
drv <- dbDriver("PostgreSQL")
# after working awhile...
for(con in dbListConnections(drv)){
   dbGetStatement(dbListResults(con))
}
}

Run the code above in your browser using DataLab