RadarSoft.RadarCube.Web.MSAS Send comments on this topic.
InternalDataSet Property
See Also 
RadarSoft.RadarCube.Web Namespace > TOLAPCube Class : InternalDataSet Property




This read only property allows to get the internal TDataSet object where database data is stored in.

Syntax

Visual Basic (Declaration) 
<BrowsableAttribute(False)>
<DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)>
Public ReadOnly Property InternalDataSet As TDataSet
Visual Basic (Usage)Copy Code
Dim instance As TOLAPCube
Dim value As TDataSet
 
value = instance.InternalDataSet
C# 
[BrowsableAttribute(false)]
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)]
public TDataSet InternalDataSet {get;}
Managed Extensions for C++ 
[BrowsableAttribute(false)]
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)]
public: __property TDataSet* get_InternalDataSet();
C++/CLI 
[BrowsableAttribute(false)]
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)]
public:
property TDataSet^ InternalDataSet {
   TDataSet^ get();
}

Remarks

Use this property to get the TDataSet object the Cube uses to store database data in. When the Cube gets open it reads every table from the database and forms the TDataSet object which from that moment on is used to access the database data. The TDataSet object stores its data on the disk in a temporary directory. So the only moment when the Cube actually connects to the database is before it creates the TDataSet object.

You can use this property directly if you need to access the database data from your application.

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2010 Radar-Soft, L.L.C. All Rights Reserved.