Package it.eng.spagobi.tools.dataset.bo

Examples of it.eng.spagobi.tools.dataset.bo.JDBCDataSet


        filteredQuery = getFilteredQuery(filterValue);
        int max_rows = 1000;
         
        Connection connection = null;
          try{
            JDBCDataSet dataSet = (JDBCDataSet)getEnv().get(EngineConstants.ENV_DATASET);
            if(dataSet != null) {
              connection = dataSet.getDataSource().getConnection();
            } else {
              connection = getDataSource().getConnection();
            }
              Statement statement = connection.createStatement();
              statement.execute(filteredQuery);
View Full Code Here

TOP

Related Classes of it.eng.spagobi.tools.dataset.bo.JDBCDataSet

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.