diff --git a/doc/olap4j_fs.html b/doc/olap4j_fs.html index d636f9f..9217d00 100644 --- a/doc/olap4j_fs.html +++ b/doc/olap4j_fs.html @@ -148,7 +148,7 @@

Contents

CellSetMetaData interface -
  • MDX parse tree model +
  • MDX parse tree model
    1. The ParseTreeWriter class
    2. @@ -623,8 +623,7 @@

      2.2. Connections

      Class.forName("org.olap4j.driver.xmla.XmlaOlap4jDriver");
      Connection connection =
          DriverManager.getConnection(
      -         "jdbc:xmla:Server=http://localhost/xmla/msxisapi.dll;"
              - + "Catalog=FoodMart");
      +         "jdbc:xmla:Server=http://localhost/xmla/msxisapi.dll"
      OlapWrapper wrapper = (OlapWrapper) connection;
      OlapConnection olapConnection = wrapper.unwrap(OlapConnection.class);
      OlapStatement statement = connection.createStatement();
      @@ -1078,30 +1077,30 @@

      2.3.10. The
    3. CellSetAxisMetaData getSlicerAxisMetaData()
    4. -

      2.4. MDX query model

      +

      2.4. MDX object model

      -

      The MDX query model represents a parsed MDX statement.

      +

      The MDX object model represents a parsed MDX statement.

      -

      An MDX query model can be created in three ways:

      +

      An MDX object model can be created in three ways:

      -

      An MDX query model can exist in an un-validated and validated +

      An MDX object model can exist in an un-validated and validated state. In the un-validated state, identifiers and function calls exist as raw strings, and no type information has been assigned. During validation, identifiers are resolved to specific MDX objects (members, etc.), type information is assigned, and if a function exists in several overloaded forms, a specific instance is chosen based upon the types of its arguments.

      -

      Any MDX query model can be serialized to a string containing MDX text.

      +

      Any MDX object model can be serialized to a string containing MDX text.

      -

      An MDX query model can be converted into a statement. For example,

      +

      An MDX object model can be converted into a statement. For example,

      import org.olap.*;
      @@ -1132,7 +1131,7 @@

      2.4. MDX query model

                      new IdentifierNode(IdentifierNode.ofNames("Unit Sales").getSegmentList()))));

      - // Create a statement based upon the query model.
      + // Create a statement based upon the object model.
      OlapStatement stmt;
      try {
          stmt = connection.createStatement();