Package org.pentaho.actionsequence.dom.actions

Examples of org.pentaho.actionsequence.dom.actions.HQLConnectionAction


    return rSet;
  }

  @Override
  protected boolean validateAction() {
    HQLConnectionAction connAction = null;
    HQLQueryAction queryAction = null;
    boolean actionValidated = true;

    try {
      if ( getActionDefinition() instanceof HQLQueryAction ) {
View Full Code Here


          } else {
            return runQuery( connection, classNames, query );
          }
        }
      } else if ( getActionDefinition() instanceof HQLConnectionAction ) {
        HQLConnectionAction connAction = (HQLConnectionAction) getActionDefinition();
        String[] classNames = null;
        createBasicConnection( connAction, classNames );
        if ( connection != null ) {
          IActionOutput outputConnection = connAction.getOutputConnectionParam();
          if ( outputConnection != null ) {
            outputConnection.setValue( this );
          }
        }
      } else {
View Full Code Here

TOP

Related Classes of org.pentaho.actionsequence.dom.actions.HQLConnectionAction

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.