[R] connecting to DB2 database

Prof Brian Ripley ripley at stats.ox.ac.uk
Thu Jun 14 19:09:00 CEST 2007


On Thu, 14 Jun 2007, Aydemir, Zava (FID) wrote:

> i am trying to connect to a DB2 server using the DBI library.

The DBI *package* does not allow you to connect to anything by itself. 
For that you need a driver package, currently available for MySQL, ORACLE 
and SQLite (only, AFAIK).

There are ODBC drivers for DB2 (on several platforms) so perhaps 
you could use RODBC: perhaps also RJDBC.


> getData <- function()
>
> {
>
>    driver <- dbDriver("DB2")
>
>    conn <- dbConnect(driver,"server","uname","pword")
>
>    data <- dbSendquery(conn, "select etc.")
>
> }
>
>
>
> When I run the function, i get the error
>
>
>
>> data <-  getData()
> Error in do.call(as.character(drvName), list(...)) :
>        could not find function "DB2"
>
>
>
>
> Can anyone help me here?
>
> Thank you
>
> Zava
> --------------------------------------------------------
>
> This is not an offer (or solicitation of an offer) to buy/se...{{dropped}}
>
> ______________________________________________
> R-help at stat.math.ethz.ch mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.
>

-- 
Brian D. Ripley,                  ripley at stats.ox.ac.uk
Professor of Applied Statistics,  http://www.stats.ox.ac.uk/~ripley/
University of Oxford,             Tel:  +44 1865 272861 (self)
1 South Parks Road,                     +44 1865 272866 (PA)
Oxford OX1 3TG, UK                Fax:  +44 1865 272595



More information about the R-help mailing list