I tried some solutions to get mondrian (i used 2.1RC) connected with a sybase ASE server. Finally i found this solutions :
- Downloaded a jdbc3 compliant driver like jtds-1.2.jar from sourceforge.
- Placed the driver in TOMCAT_HOME/common/endorsed
- In configuration files like
mondrian/WEB-INF/datasources.xml
mondrian/WEB-INF/web.xml
i modified the parameters line in this way:
Provider=mondrian;jdbcuser=userName;jdbcpassword=u serPass;Jdbc=jdbc:jtds:sybase://xxx.xxx.xxx.xxxort/dbName;JdbcDrivers=net.sourceforge.jtds.jdbc.Drive r;Catalog=/WEB-INF/queries/myCatalog.xml
(The datasources.xml doesn't need to be modified if you are only testing the db, but if you are using something like OPENI you have to).


ort/dbName;JdbcDrivers=net.sourceforge.jtds.jdbc.Drive r;Catalog=/WEB-INF/queries/myCatalog.xml
Reply With Quote