Package org.pentaho.reporting.engine.classic.core.modules.misc.connections

Examples of org.pentaho.reporting.engine.classic.core.modules.misc.connections.DataSourceMgmtService


  protected DataSource retrieve(final String datasource) throws DatasourceServiceException
  {
    try
    {
      final DataSourceMgmtService datasourceMgmtSvc =
          ClassicEngineBoot.getInstance().getObjectFactory().get(DataSourceMgmtService.class);
      try
      {
        final IDatabaseConnection databaseConnection = datasourceMgmtSvc.getDatasourceByName(datasource);
        return PooledDatasourceHelper.setupPooledDataSource(databaseConnection);
      }
      catch(DatasourceMgmtServiceException daoe)
      {
        return queryFallback(datasource);
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.engine.classic.core.modules.misc.connections.DataSourceMgmtService

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.