Skip to content

Commit

Permalink
Added some code to close the connection/statement on the PaloConnecti…
Browse files Browse the repository at this point in the history
…on example.

git-svn-id: https://olap4j.svn.sourceforge.net/svnroot/olap4j/trunk@331 c6a108a4-781c-0410-a6c6-c2d559e19af0
  • Loading branch information
lucboudreau committed Jul 28, 2010
1 parent 49915ad commit b06bcd2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/org/olap4j/sample/PaloConnection.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ public static void main(String[] args) throws Exception {
new TraditionalCellSetFormatter();

formatter.format(cellSet, new PrintWriter(System.out));

statement.close();
connection.close();
}
}

Expand Down

0 comments on commit b06bcd2

Please sign in to comment.