pkgsrc-wip/R-Rdbi/DESCR
2005-12-30 19:55:18 +00:00

9 lines
351 B
Text

Rdbi is a general database access framework for the R statistical
computing environment. It is the successor to RPgSQL, a PostgreSQL
specific package. It provides Rdbi binding for PostgreSQL.
Example session:
conn <- dbConnect(PgSQL(), host = "myhost", dbname = "mydb")
res <- dbSendQuery(conn, "select * from mytable")
mydata <- dbGetResult(res)