Skip to content

Commit

Permalink
version 0.1-4
Browse files Browse the repository at this point in the history
  • Loading branch information
eddelbuettel authored and gaborcsardi committed Jan 26, 2009
1 parent 26846d2 commit 5aaf120
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 25 deletions.
6 changes: 3 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: RPostgreSQL
Version: 0.1-3
Date: $Date: 2008-12-13 07:47:48 -0600 (Sat, 13 Dec 2008) $
Version: 0.1-4
Date: $Date: 2009-01-26 20:14:54 -0600 (Mon, 26 Jan 2009) $
Title: R interface to the PostgreSQL database system
Author: Sameer Kumar Prayaga <sameer.bits@gmail.com> with mentor Dirk Eddelbuettel <edd@debian.org>
Maintainer: Dirk Eddelbuettel <edd@debian.org>
Expand All @@ -12,4 +12,4 @@ Depends: R (>= 2.7.0), methods, DBI (>= 0.1-4)
License: GPL-2
URL: http://www.stat.bell-labs.com/RS-DBI, http://www.postgresql.org
Collate: S4R.R zzz.R PostgreSQLSupport.R dbObjectId.R PostgreSQL.R
Packaged: Sat Dec 13 10:55:07 2008; edd
Packaged: Tue Jan 27 19:45:32 2009; edd
7 changes: 7 additions & 0 deletions inst/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
2009-01-26 Dirk Eddelbuettel <edd@debian.org>

* DESCRIPTION: CRAN release 0.1-4

* man/dbDataType-methods.Rd: small correction for error noticed
by the new R parser

2008-12-12 Dirk Eddelbuettel <edd@debian.org>

* DESCRIPTION: CRAN release 0.1-3
Expand Down
16 changes: 8 additions & 8 deletions man/dbApply.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
bringing an entire result set all at once. The result set
is expected to be sorted by the grouping field.
}
\usage{
dbApply(res, ...)
}
\arguments{
\item{res}{a result set (see \code{\link[DBI]{dbSendQuery}}).}
\item{...}{any additional arguments to be passed to \code{FUN}.}
}
%\usage{
%dbApply(res, ...)
%}
%\arguments{
% \item{res}{a result set (see \code{\link[DBI]{dbSendQuery}}).}
% \item{...}{any additional arguments to be passed to \code{FUN}.}
%}
\details{
\code{dbApply}
This generic is meant to handle somewhat gracefully(?) large amounts
Expand All @@ -38,7 +38,7 @@ dbApply(res, ...)
}

\examples{\dontrun{
## compute quanitiles for each network agent
## compute quantiles for each network agent
con <- dbConnect(PostgreSQL(), user= "user", password="passwd", dbname="sample")
rs <- dbSendQuery(con,
"select Agent, ip_addr, DATA from pseudo_data order by Agent")
Expand Down
26 changes: 14 additions & 12 deletions man/dbDataType-methods.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,21 @@
Determine the SQL Data Type of an S object
}
\description{
This method is a straight-forward implementation of the corresponding
generic function.
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.
\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{
Expand Down
4 changes: 2 additions & 2 deletions man/postgresqlSupport.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
overwrite=FALSE, append=FALSE, ..., allow.keywords = FALSE)
postgresqlImportFile(con, name, value, field.types, overwrite=FALSE,
append=FALSE, header, row.names, nrows=50, sep=",", eol="\n",
skip = 0, quote='"', ...)
skip = 0, quote="\"", ...)

## Transaction Management
postgresqlTransactionStatement(con, statement)
Expand Down Expand Up @@ -183,7 +183,7 @@ Command-line options to be sent to the server
\item{sep}{field separator character.}
\item{eol}{end-of-line separator.}
\item{skip}{number of lines to skip before reading data in the input file.}
\item{quote}{the quote character used in the input file (defaults to \code{"}.}
\item{quote}{the quote character used in the input file (defaults to \code{\"}.}
\item{allow.keywords}{
logical indicating whether column names that happen to be PostgreSQL
keywords be used as column names in the resulting relation (table)
Expand Down

0 comments on commit 5aaf120

Please sign in to comment.