CellSet Class
Represents a cellset that is returned as a result of a query.
네임스페이스: Microsoft.AnalysisServices.AdomdClient
어셈블리: Microsoft.AnalysisServices.AdomdClient (in microsoft.analysisservices.adomdclient.dll)
구문
‘선언
<DefaultMemberAttribute("Item")> _
Public NotInheritable Class CellSet
[DefaultMemberAttribute("Item")]
public sealed class CellSet
[DefaultMemberAttribute(L"Item")]
public ref class CellSet sealed
/** @attribute DefaultMemberAttribute("Item") */
public final class CellSet
DefaultMemberAttribute("Item")
public final class CellSet
주의
In ADOMD.NET, the CellSet encapsulates a multidimensional result set that is the result of running a command. A multidimensional result set contains a discrete collection of data points, or cells, that are organized along multiple dimensions, or axes.
A CellSet is created when the Execute or ExecuteCellSet method of the AdomdCommand is called to run a command.
Inheritance Hierarchy
System.Object
Microsoft.AnalysisServices.AdomdClient.CellSet
예
The following subroutine, given a CellSet, examines and displays information about the object:
Public Sub ListCellSetInfo(ByRef CellSetToCheck As CellSet)
If CellSetToCheck Is Nothing Then
Throw New System.ArgumentNullException("CellSetToCheck")
Else
Console.WriteLine("The cellset has {0} cells " & _
"organized along {1} axes.", _
CellSetToCheck.Cells.Count, _
CellSetToCheck.Axes.Count)
End If
End Sub
스레드 보안
Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
플랫폼
개발 플랫폼
지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.
대상 플랫폼
지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.
참고 항목
참조
CellSet Members
Microsoft.AnalysisServices.AdomdClient Namespace