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
|
% $Id: dbDataType-methods.Rd,v 0.1 2008/08/10 18:04:01 psk Exp $
\name{dbDataType-methods}
\docType{methods}
\alias{dbDataType-methods}
\alias{dbDataType,PostgreSQLObject-method}
\title{
Determine the SQL Data Type of an S object
}
\description{
This method is a straight-forward implementation of the corresponding
generic function.
}
\section{Methods}{
\describe{
\item{dbObj}{
any \code{PostgreSQLObject} object, e.g., \code{PostgreSQLDriver},
\code{PostgreSQLConnection}, \code{PostgreSQLResult}.
}
\item{obj}{
R/S-Plus object whose SQL type we want to determine.
}
\item{\dots}{
any other parameters that individual methods may need.
}
}
}
\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[DBI]{isSQLKeyword}}
\code{\link[DBI]{make.db.names}}
}
\examples{\dontrun{
data(quakes)
drv <- dbDriver("PostgreSQL")
sql.type <- dbDataType(drv, quakes)
}
}
\keyword{methods}
\keyword{interface}
\keyword{database}
% docclass is function
% Converted by Sd2Rd version 1.15.2.1.
% vim: syntax=tex
|