Package oracle.AWAction

Examples of oracle.AWAction.Interaction


   *  Builds the analytic workspace.
   */
  public void xml_build_global_aw(String awName)
  {
    // Create an Interaction object for building the analytic workspace.
    curInteraction = new Interaction();

    // Set the AWConnection to use when building the analytic workspace.
    curInteraction.setConnection(awConnection);

    // Create an BuildDatabase object.
View Full Code Here


   *  Builds the analytic workspace.
   */
  public void xml_build_global_aw(String awName)
  {
    // Create an Interaction object for building the analytic workspace.
    curInteraction = new Interaction();

    // Set the AWConnection to use when building the analytic workspace.
    curInteraction.setConnection(awConnection);

    // Create an BuildDatabase object.
View Full Code Here

   *  Builds the analytic workspace.
   */
  public void xml_build_global_aw(String awName)
  {
    // Create an Interaction object for building the analytic workspace.
    curInteraction = new Interaction();

    // Set the AWConnection to use when building the analytic workspace.
    curInteraction.setConnection(awConnection);

    // Create an BuildDatabase object.
View Full Code Here

      }catch(Exception e){
        result.setFailed(e.getMessage());
        e.printStackTrace();
        return result;
      }
      Interaction curInteraction = new Interaction();

        // Set the AWConnection to use when building the analytic workspace.
        curInteraction.setConnection(awConnection);

        // Create an BuildDatabase object.
        BuildDatabase myBuild =
                 (BuildDatabase)curInteraction.createAction("BUILDDATABASE");

        // Set the name of the analytic workspace.
        myBuild.setAWName(WebVariable.AW_GLOBAL_ID);//挂载分析空间global.global

        // Specify not running solves when building the database.
View Full Code Here

      }catch(Exception e){
        result.setFailed(e.getMessage());
        e.printStackTrace();
        return result;
      }
      Interaction curInteraction = new Interaction();

        // Set the AWConnection to use when building the analytic workspace.
        curInteraction.setConnection(awConnection);

        // Create an BuildDatabase object.
        BuildDatabase myBuild =
                 (BuildDatabase)curInteraction.createAction("BUILDDATABASE");

        // Set the name of the analytic workspace.
        myBuild.setAWName(WebVariable.AW_GLOBAL_ID);//挂载分析空间global.global

        // Specify not running solves when building the database.
View Full Code Here

TOP

Related Classes of oracle.AWAction.Interaction

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.