Oracle9i OLAP Developer's Guide to the OLAP API Release 2 (9.2) Part Number A95297-01 |
|
Discovering the Available Metadata, 3 of 8
An MdmMetadataProvider
gives access to the metadata in a data store. It maps OLAP metadata objects, such as measures, dimensions, and measure folders, to the corresponding MDM objects, such as MdmMeasure
, MdmDimension
, and MdmSchema
.
Before you can create an MdmMetadataProvider
, you must create a DataProvider
as described in Chapter 3, "Connecting to a Data Store".
The following code creates an MdmMetadataProvider
using a DataProvider
called dp
.
MdmMetadataProvider mp = null; mp = (MdmMetadataProvider) dp.getDefaultMetadataProvider();
|
Copyright © 2000, 2002 Oracle Corporation. All Rights Reserved. |
|