1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
% $Id: dbListTables-methods.Rd,v 0.1 2008/08/10 18:04:01 psk Exp $
\name{dbListTables-methods}
\docType{methods}
\alias{dbListTables-methods}
\alias{dbListFields-methods}
\alias{dbListConnections-methods}
\alias{dbListResults-methods}
\alias{dbListTables,PostgreSQLConnection-method}
\alias{dbListFields,PostgreSQLConnection,character-method}
\alias{dbListFields,PostgreSQLResult,missing-method}
\alias{dbListConnections,PostgreSQLDriver-method}
\alias{dbListResults,PostgreSQLConnection-method}
\title{
List items from an PostgreSQL DBMS and from objects
}
\description{
These methods are straight-forward implementations of the corresponding
generic functions.
}
\section{Methods}{\describe{
\item{drv}{an \code{PostgreSQLDriver}.}
\item{conn}{an \code{PostgreSQLConnection}.}
\item{name}{a character string with the table name.}
\item{\dots}{currently not used.}
}
}
\references{
See the Database Interface definition document
\code{DBI.pdf} in the base directory of this package
or
\url{https://cran.r-project.org/package=DBI}.
}
\seealso{
\code{\link{PostgreSQL}},
\code{\link[DBI]{dbGetInfo}},
\code{\link[DBI]{dbColumnInfo}},
\code{\link[DBI]{dbDriver}},
\code{\link[DBI]{dbConnect}},
\code{\link[DBI]{dbSendQuery}}
}
\examples{\dontrun{
drv <- dbDriver("PostgreSQL")
# after working awhile...
for(con in dbListConnections(drv)){
dbGetStatement(dbListResults(con))
}
}
}
\keyword{methods}
\keyword{interface}
\keyword{database}
% vim: syntax=tex
|