Paket | mx.olap |
Klass | public class OLAPQuery |
Arv | OLAPQuery Object |
Implementerar | IOLAPQuery |
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
The <mx:OLAPQuery>
tag inherits all of the tag attributes
of its superclass, and adds the following tag attributes:
<mx:OLAPQuery Properties axis="" />
MXML-standardegenskapaxes
Fler exempel
Preparing a cube for a query
Creating a query axis
Executing a query and returning the results to an OLAPDataGrid control
Writing a query for a simple OLAP cube
Writing a query for a complex OLAP cube
Creating a query using a nondefault measure
Relaterade API-element
Egenskap | Definieras med | ||
---|---|---|---|
axes : Array
The axis of the Query as an Array of OLAPQueryAxis instances. | OLAPQuery | ||
COLUMN_AXIS : int = 0 [statisk]
Specifies a column axis. | OLAPQuery | ||
constructor : Object
En referens till klassobjektet eller konstruktorfunktionen för en given objektinstans. | Object | ||
ROW_AXIS : int = 1 [statisk]
Specifies a row axis. | OLAPQuery | ||
SLICER_AXIS : int = 2 [statisk]
Specifies a slicer axis. | OLAPQuery |
Metod | Definieras med | ||
---|---|---|---|
Gets an axis from the query. | OLAPQuery | ||
Anger om det finns en egenskap angiven för ett objekt. | Object | ||
Anger om en instans av klassen Object finns i prototypkedjan för objektet som anges som parameter. | Object | ||
Anger om den angivna egenskapen finns och är uppräkningsbar. | Object | ||
Sets an axis to the query. | OLAPQuery | ||
Anger tillgänglighet för en dynamisk egenskap för slingåtgärder. | Object | ||
Returnerar det här objektets strängrepresentation, formaterad i enlighet med språkspecifika konventioner. | Object | ||
Returnerar det angivna objektets strängbeteckning. | Object | ||
Returnerar det angivna objektets primitiva värde. | Object |
axes | egenskap |
axes:Array
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
The axis of the Query as an Array of OLAPQueryAxis instances. A query can have three axes: column, row, and slicer.
Implementering
public function get axes():Array
public function set axes(value:Array):void
COLUMN_AXIS | egenskap |
public static var COLUMN_AXIS:int = 0
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Specifies a column axis.
Use this property as a value of the axisOrdinal
argument
to the getAxis()
method.
ROW_AXIS | egenskap |
public static var ROW_AXIS:int = 1
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Specifies a row axis.
Use this property as a value of the axisOrdinal
argument
to the getAxis()
method.
SLICER_AXIS | egenskap |
public static var SLICER_AXIS:int = 2
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Specifies a slicer axis.
Use this property as a value of the axisOrdinal
argument
to the getAxis()
method.
getAxis | () | metod |
public function getAxis(axisOrdinal:int):IOLAPQueryAxis
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Gets an axis from the query. You typically call this method to obtain an uninitialized IOLAPQueryAxis instance, then configure the IOLAPQueryAxis instance for the query.
Parametrar
axisOrdinal:int — Specify OLAPQuery.COLUMN AXIS for a column axis,
OLAPQuery.ROW_AXIS for a row axis,
and OLAPQuery.SLICER_AXIS for a slicer axis.
|
IOLAPQueryAxis — The IOLAPQueryAxis instance.
|
setAxis | () | metod |
public function setAxis(axisOrdinal:int, axis:IOLAPQueryAxis):void
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Sets an axis to the query.
Parametrar
axisOrdinal:int — Specify OLAPQuery.COLUMN AXIS for a column axis,
OLAPQuery.ROW_AXIS for a row axis,
and OLAPQuery.SLICER_AXIS for a slicer axis.
| |
axis:IOLAPQueryAxis — The IOLAPQueryAxis instance.
|
Tue Jun 12 2018, 01:40 PM Z