AdomdDataReader Members

Include Protected Members
Include Inherited Members

Provides a means of reading a forward-only result set obtained by running a command, and can be used to access multidimensional data sources.

The AdomdDataReader type exposes the following members.

Methods

  Name Description
Public method {dtor}() This method is for internal use only.
Public method Close() Closes the AdomdDataReader.
Public method CreateObjRef(Type) (Inherited from MarshalByRefObject.)
Public method Dispose() Releases all resources used by the AdomdDataReader.
Public method Equals(Object) (Inherited from Object.)
Protected method Finalize() (Inherited from Object.)
Public method GetBoolean(Int32) Returns a Boolean that contains the value from the specified column.
Public method GetByte(Int32) Returns a Byte that contains the value from the specified column.
Public method GetBytes(Int32, Int64, array<Byte[], Int32, Int32) This member is reserved for future use.
Public method GetChar(Int32) Returns a Char that contains the value from the specified column.
Public method GetChars(Int32, Int64, array<Char[], Int32, Int32) Returns an array of Char objects that contain a stream of values from the specified column.
Public method GetData(Int32) Returns a System.Data.IDataReader interface to be used when a column points to more remote structured data.
Public method GetDataReader(Int32) Gets an AdomdDataReader object from the specified column.
Public method GetDataTypeName(Int32) Returns a String that contains the full name of the data type for the specified column.
Public method GetDateTime(Int32) Returns a DateTime that contains the value from the specified column.
Public method GetDecimal(Int32) Returns a Decimal that contains the value from the specified column.
Public method GetDouble(Int32) Returns a Double that contains the value from the specified column.
Public method GetEnumerator() Gets an IEnumerator interface for iterating through the collection.
Public method GetFieldType(Int32) Returns a Type that represents the data type of the specified column.
Public method GetFloat(Int32) Returns a Float that contains the value from the specified column.
Public method GetGuid(Int32) Returns a Guid that contains the value from the specified column.
Public method GetHashCode() (Inherited from Object.)
Public method GetInt16(Int32) Returns an Int16 that contains the value from the specified column.
Public method GetInt32(Int32) Returns an Int32 that contains the value from the specified column.
Public method GetInt64(Int32) Returns an Int64 that contains the value from the specified column.
Public method GetLifetimeService() (Inherited from MarshalByRefObject.)
Public method GetName(Int32) Returns the name of the specified column.
Public method GetOrdinal(String) Returns the ordinal position of the specified column.
Public method GetSchemaTable() Returns a DataTable that describes the column metadata of the AdomdDataReader.
Public method GetString(Int32) Returns a String that contains the value from the specified column.
Public method GetTimeSpan(Int32) Gets a TimeSpan that contains the value from the specified column.
Public method GetType() (Inherited from Object.)
Public method GetValue(Int32) Returns the value for the specified column in its native format.
Public method GetValues(array<Object[]) Gets an array of values for all of the columns in the current row.
Public method InitializeLifetimeService() (Inherited from MarshalByRefObject.)
Public method IsDBNull(Int32) Returns a Boolean that contains a value indicating whether the column is set to null.
Protected method MemberwiseClone() (Inherited from Object.)
Protected method MemberwiseClone(Boolean) (Inherited from MarshalByRefObject.)
Public method NextResult() This member is reserved for future use.
Public method Read() Advances the AdomdDataReader to the next row.
Public method ToString() (Inherited from Object.)

Top

Properties

  Name Description
Public property Depth Gets a value indicating the depth of nesting for the current row.
Public property FieldCount Gets a value indicating the number of columns in the current row.
Public property IsClosed Gets a value indicating whether the data reader is closed.
Public property Item[Int32] Gets the value of a specified column in its native format, given the ordinal position of the column. In Microsoft Visual C#, this property is the indexer for the T:Microsoft.AnalysisServices.AdomdServer.AdomdDataReader class.
Public property Item[String] Gets the value of a specified column in its native format, given the name of the column. In Microsoft Visual C#, this property is the indexer for the AdomdDataReader class.
Public property RecordsAffected This member is reserved for future use.

Top