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