Package org.pentaho.actionsequence.dom

Examples of org.pentaho.actionsequence.dom.IActionOutput


        return false;
      }

      rSet = ( (HQLConnection) conn ).executeQuery( query );

      IActionOutput actionOutput = ( (HQLQueryAction) getActionDefinition() ).getOutputResultSetParam();
      if ( actionOutput != null ) {
        actionOutput.setValue( rSet );
      }
      return true;
    } catch ( Exception e ) {
      error( Messages.getInstance().getErrorString(
          "HQLBaseComponent.ERROR_0007_QUERY_EXECUTION_FAILED", getActionName() ), e ); //$NON-NLS-1$
View Full Code Here


      if ( resultSet != null ) {
        if ( !xQueryAction.getLive().getBooleanValue( true ) ) {
          resultSet = resultSet.memoryCopy();
        }
        try {
          IActionOutput resultSetOutput = xQueryAction.getOutputResultSet();
          if ( resultSetOutput != null ) {
            resultSetOutput.setValue( resultSet );
          }
          success = true;
        } finally {
          resultSet.close();
        }
View Full Code Here

TOP

Related Classes of org.pentaho.actionsequence.dom.IActionOutput

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.