예제 #1
0
 public boolean acceptsURL(String url) throws SQLException {
   return MondrianOlap4jConnection.acceptsURL(url);
 }
예제 #2
0
 public Connection connect(String url, Properties info) throws SQLException {
   if (!MondrianOlap4jConnection.acceptsURL(url)) {
     return null;
   }
   return factory.newConnection(this, url, info);
 }