Skip to content

Commit

Permalink
Fixes an issue with the XmlaOlap4jDriver and the DriverManager from J…
Browse files Browse the repository at this point in the history
…ava. Every java.sql.Driver implementation needs a public empty constructor so it can be instantiated correctly by JDBC. It is not explicitly specified by the JDBC specs, but Sun's JVM attempts to call that constructor none the less. We have also received some bug reports from the community about olap4j's driver implementation showing the same problems with WebSphere and some other JDBC pools.

git-svn-id: https://olap4j.svn.sourceforge.net/svnroot/olap4j/trunk@475 c6a108a4-781c-0410-a6c6-c2d559e19af0
  • Loading branch information
lucboudreau committed Sep 29, 2011
1 parent 71d43c2 commit 0627ad7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/olap4j/driver/xmla/XmlaOlap4jDriver.java
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public Thread newThread(Runnable r) {
/**
* Creates an XmlaOlap4jDriver.
*/
protected XmlaOlap4jDriver() {
public XmlaOlap4jDriver() {
String factoryClassName;
try {
Class.forName("java.sql.Wrapper");
Expand Down

0 comments on commit 0627ad7

Please sign in to comment.