[R] RJDBC and multiple classpaths

2011-06-26 Thread Orvalho Augusto
Corect me if this is not the right place to post this. I have a mdbdriver.jar (to access an MSAccess file) under Linux. I bought the license from http://www.csv-jdbc.com/ guys. The driver work fine when tested with DBVisualizer or another JDBC thing. The problem is that driver needs 3 other more

Re: [R] RJDBC and multiple classpaths

2011-06-26 Thread Orvalho Augusto
My ignorance! I managed to connect doing: library(RJDBC) cp - c( /opt/DbVisualizer-7.1.1/jdbc/mdb/log4j.jar, /opt/DbVisualizer-7.1.1/jdbc/mdb/commons_lang.jar, /opt/DbVisualizer-7.1.1/jdbc/mdb/commons_logging.jar ) .jinit(classpath=cp) drv - JDBC(jstels.jdbc.mdb.MDBDriver,