AdomdDataAdapter Class

Represents a Microsoft .NET Framework data adapter for an analytical data source.

Inheritance Hierarchy

System.Object
  System.MarshalByRefObject
    System.ComponentModel.Component
      System.Data.Common.DataAdapter
        System.Data.Common.DbDataAdapter
          Microsoft.AnalysisServices.AdomdClient.AdomdDataAdapter

Namespace:  Microsoft.AnalysisServices.AdomdClient
Assembly:  Microsoft.AnalysisServices.AdomdClient (in Microsoft.AnalysisServices.AdomdClient.dll)

Syntax

'Declaration
Public NotInheritable Class AdomdDataAdapter _
    Inherits DbDataAdapter _
    Implements IDbDataAdapter, IDataAdapter
'Usage
Dim instance As AdomdDataAdapter
public sealed class AdomdDataAdapter : DbDataAdapter, 
    IDbDataAdapter, IDataAdapter
public ref class AdomdDataAdapter sealed : public DbDataAdapter, 
    IDbDataAdapter, IDataAdapter
[<SealedAttribute>]
type AdomdDataAdapter =  
    class 
        inherit DbDataAdapter 
        interface IDbDataAdapter 
        interface IDataAdapter 
    end
public final class AdomdDataAdapter extends DbDataAdapter implements IDbDataAdapter, IDataAdapter

The AdomdDataAdapter type exposes the following members.

Constructors

  Name Description
Public method AdomdDataAdapter() Initializes a new instance of the AdomdDataAdapter class with default values.
Public method AdomdDataAdapter(AdomdCommand) Initializes a new instance of the AdomdDataAdapter class by using a specified AdomdCommand as a select command.
Public method AdomdDataAdapter(String, AdomdConnection) Initializes a new instance of the AdomdDataAdapter class by using the specified command text and AdomdConnection.
Public method AdomdDataAdapter(String, String) Initializes a new instance of the AdomdDataAdapter class using the specified command text and connection string.

Top

Properties

  Name Description
Public property AcceptChangesDuringFill (Inherited from DataAdapter.)
Public property AcceptChangesDuringUpdate (Inherited from DataAdapter.)
Public property Container (Inherited from Component.)
Public property ContinueUpdateOnError (Inherited from DataAdapter.)
Public property DeleteCommand (Inherited from DbDataAdapter.)
Protected property FillCommandBehavior (Inherited from DbDataAdapter.)
Public property FillLoadOption (Inherited from DataAdapter.)
Public property InsertCommand (Inherited from DbDataAdapter.)
Public property MissingMappingAction (Inherited from DataAdapter.)
Public property MissingSchemaAction (Inherited from DataAdapter.)
Public property ReturnProviderSpecificTypes (Inherited from DataAdapter.)
Public property SelectCommand Gets or sets a command that is used to retrieve data from an analytical data source.
Public property Site (Inherited from Component.)
Public property TableMappings (Inherited from DataAdapter.)
Public property UpdateBatchSize (Inherited from DbDataAdapter.)
Public property UpdateCommand (Inherited from DbDataAdapter.)

Top

Methods

  Name Description
Public method CreateObjRef Security Critical. (Inherited from MarshalByRefObject.)
Public method Dispose (Inherited from Component.)
Public method Equals (Inherited from Object.)
Public method Fill(DataSet) (Inherited from DbDataAdapter.)
Public method Fill(DataTable) (Inherited from DbDataAdapter.)
Public method Fill(DataSet, String) (Inherited from DbDataAdapter.)
Public method Fill(Int32, Int32, array<DataTable[]) (Inherited from DbDataAdapter.)
Public method Fill(DataSet, Int32, Int32, String) (Inherited from DbDataAdapter.)
Public method FillSchema(DataTable, SchemaType) (Inherited from DbDataAdapter.)
Public method FillSchema(DataSet, SchemaType) (Inherited from DbDataAdapter.)
Public method FillSchema(DataSet, SchemaType, String) (Inherited from DbDataAdapter.)
Public method GetFillParameters (Inherited from DbDataAdapter.)
Public method GetHashCode (Inherited from Object.)
Public method GetLifetimeService Security Critical. (Inherited from MarshalByRefObject.)
Public method GetType (Inherited from Object.)
Public method InitializeLifetimeService Security Critical. (Inherited from MarshalByRefObject.)
Public method ResetFillLoadOption (Inherited from DataAdapter.)
Public method ShouldSerializeAcceptChangesDuringFill (Inherited from DataAdapter.)
Public method ShouldSerializeFillLoadOption (Inherited from DataAdapter.)
Public method ToString (Inherited from Component.)
Public method Update(array<DataRow[]) (Inherited from DbDataAdapter.)
Public method Update(DataTable) (Inherited from DbDataAdapter.)
Public method Update(DataSet) Calls the respective INSERT, UPDATE, or DELETE statements for each inserted, updated, or deleted row in the specified data set. (Overrides DbDataAdapter.Update(DataSet).)
Public method Update(DataSet, String) (Inherited from DbDataAdapter.)

Top

Events

  Name Description
Public event Disposed (Inherited from Component.)
Public event FillError (Inherited from DataAdapter.)

Top

Explicit Interface Implementations

  Name Description
Explicit interface implemetationPrivate property IDbDataAdapter.DeleteCommand Gets or sets an SQL statement for deleting records from the data set.
Explicit interface implemetationPrivate property IDbDataAdapter.InsertCommand Gets or sets an SQL statement used to insert new records into the data source.
Explicit interface implemetationPrivate property IDbDataAdapter.UpdateCommand Gets or sets an SQL statement used to update records in the data source.
Explicit interface implemetationPrivate method ICloneable.Clone (Inherited from DbDataAdapter.)
Explicit interface implemetationPrivate property IDbDataAdapter.SelectCommand (Inherited from DbDataAdapter.)
Explicit interface implemetationPrivate property IDataAdapter.TableMappings (Inherited from DataAdapter.)

Top

Remarks

The AdomdDataAdapter is the ADOMD.NET implementation of the System.Data.IDbDataAdapter interface from the Microsoft .NET Framework class library. .

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

Microsoft.AnalysisServices.AdomdClient Namespace