Package rex.xmla

Examples of rex.xmla.XMLAExecuteProperties


         {
             JOptionPane.showMessageDialog(this,function+" "+I18n.getString("errorMessage.notImplemented"));
             return;
         }
       //Initialize XMLA Execute properties for executing MDX Query.
       XMLAExecuteProperties execProperties = XMLAObjectsFactory.newXMLAExecuteProperties();
       execProperties.setDataSourceInfo(properties.getDataSourceInfo());
       execProperties.setCatalog(properties.getCatalog());
      
                //=====   .Members handling get .members from original query
                // split the original query to pickup dimensions
                String dotMembersSplit[] = null;
                dotMembersDims = null;
View Full Code Here


   public static void main(String[] args) {

      ServerMetadata svm2 = new ServerMetadata("http://localhost:8080/mondrian/xmla");


      XMLAExecuteProperties   properties2   = XMLAObjectsFactory.newXMLAExecuteProperties();


      properties2.setDataSourceInfo("FoodMartSource");
      properties2.setCatalog("Foodmart");



      try{
View Full Code Here

   public static void main(String[] args) {
      ServerMetadata svm = new ServerMetadata("http://localhost/xmla/msxisapi.dll");


      XMLAExecuteProperties properties = XMLAObjectsFactory.newXMLAExecuteProperties();

      properties.setDataSourceInfo("Local Analysis properties");
      properties.setCatalog("Foodmart 2000");


      try{
         Document d = svm.execute("SELECT {[Measures].members * [1997].children} ON COLUMNS, {[Store].[usa].children * [Position].[All Position].children} DIMENSION PROPERTIES [Store].[Store SQFT] ON ROWS FROM [Hr]"
                                                  , properties);
View Full Code Here

TOP

Related Classes of rex.xmla.XMLAExecuteProperties

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.