Skip to content

Commit

Permalink
Add skeleton olap4j driver for XMLA
Browse files Browse the repository at this point in the history
git-svn-id: https://olap4j.svn.sourceforge.net/svnroot/olap4j/trunk@25 c6a108a4-781c-0410-a6c6-c2d559e19af0
  • Loading branch information
julianhyde committed Aug 9, 2007
1 parent da3fcfa commit 12500d1
Show file tree
Hide file tree
Showing 20 changed files with 5,068 additions and 293 deletions.
3 changes: 3 additions & 0 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
<pathelement location="${lib.dir}/log4j-1.2.9.jar"/>
<pathelement location="${lib.dir}/javacup.jar"/>
<pathelement location="${testlib.dir}/junit.jar"/>
<pathelement location="${testlib.dir}/servlet.jar"/>
<!-- We depend on mondrian right now. Ugh. -->
<pathelement location="${mondrian.dir}/classes"/>
<pathelement location="${mondrian.dir}/testclasses"/>
Expand Down Expand Up @@ -117,6 +118,8 @@
<include name="**/*.java"/>
<exclude name="mondrian/olap4j/FactoryJdbc3Impl.java" if="jdk16.present"/>
<exclude name="mondrian/olap4j/FactoryJdbc4Impl.java" if="jdk16.not.present"/>
<exclude name="org/olap4j/driver/xmla/FactoryJdbc3Impl.java" if="jdk16.present"/>
<exclude name="org/olap4j/driver/xmla/FactoryJdbc4Impl.java" if="jdk16.not.present"/>
</javac>

<javac
Expand Down
4 changes: 2 additions & 2 deletions src/mondrian/olap4j/MondrianOlap4jDriver.java
Original file line number Diff line number Diff line change
Expand Up @@ -139,11 +139,11 @@ public DriverPropertyInfo[] getPropertyInfo(
}

public int getMajorVersion() {
return 2;
return MAJOR_VERSION;
}

public int getMinorVersion() {
return 4;
return MINOR_VERSION;
}

public boolean jdbcCompliant() {
Expand Down
Loading

0 comments on commit 12500d1

Please sign in to comment.