Compartir a través de


Clase AdomdCommand

Represents a command to be run against an analytical data source.

Jerarquía de herencia

System.Object
  System.MarshalByRefObject
    System.ComponentModel.Component
      Microsoft.AnalysisServices.AdomdClient.AdomdCommand

Espacio de nombres:  Microsoft.AnalysisServices.AdomdClient
Ensamblado:  Microsoft.AnalysisServices.AdomdClient (en Microsoft.AnalysisServices.AdomdClient.dll)

Sintaxis

'Declaración
Public NotInheritable Class AdomdCommand _
    Inherits Component _
    Implements IDbCommand, IDisposable, ICloneable
'Uso
Dim instance As AdomdCommand
public sealed class AdomdCommand : Component, 
    IDbCommand, IDisposable, ICloneable
public ref class AdomdCommand sealed : public Component, 
    IDbCommand, IDisposable, ICloneable
[<SealedAttribute>]
type AdomdCommand =  
    class 
        inherit Component 
        interface IDbCommand 
        interface IDisposable 
        interface ICloneable 
    end
public final class AdomdCommand extends Component implements IDbCommand, IDisposable, ICloneable

El tipo AdomdCommand expone los siguientes miembros.

Constructores

  Nombre Descripción
Método público AdomdCommand() Initializes a new instance of the AdomdCommand class with default values.
Método público AdomdCommand(String) Initializes a new instance of the AdomdCommand class with the text of the command.
Método público AdomdCommand(String, AdomdConnection) Initializes a new instance of the AdomdCommand class with the text of the command and an AdomdConnection.

Arriba

Propiedades

  Nombre Descripción
Propiedad pública ActivityID
Propiedad pública CommandStream Gets or sets the command to run, using a System.IO.Stream.
Propiedad pública CommandText Gets or sets the command to run.
Propiedad pública CommandTimeout Gets or sets the time to wait for a command to run before the AdomdCommand stops trying to run the command and generates an error.
Propiedad pública CommandType Gets or sets the System.Data.CommandType used by the AdomdCommand.
Propiedad pública Connection Gets or sets the AdomdConnection that the AdomdCommand uses.
Propiedad pública Container (Se hereda de Component.)
Propiedad pública Parameters Gets an instance of an AdomdParameterCollection class that contains the parameters used when running the AdomdCommand.
Propiedad pública Properties Gets an instance of an AdomdPropertyCollection class that contains the properties associated with the AdomdCommand.
Propiedad pública Site (Se hereda de Component.)
Propiedad pública UpdatedRowSource This member is reserved for future use.

Arriba

Métodos

  Nombre Descripción
Método público Cancel Tries to cancel the execution of the AdomdCommand.
Método público Clone Creates and returns a new object that is a copy of the current AdomdCommand instance.
Método público CreateObjRef Importante para la seguridad. (Se hereda de MarshalByRefObject.)
Método público CreateParameter Returns a newly created AdomdParameter.
Método público Dispose (Se hereda de Component.)
Método público Equals (Se hereda de Object.)
Método público Execute Runs the AdomdCommand, and returns either a CellSet or an AdomdDataReader.
Método público ExecuteCellSet Runs the AdomdCommand and returns a CellSet.
Método público ExecuteNonQuery Runs the AdomdCommand without returning any results.
Método público ExecuteReader() Runs the AdomdCommand and returns an AdomdDataReader.
Método público ExecuteReader(CommandBehavior) Runs the AdomdCommand using the specified System.Data.CommandBehaviorenumeration value and returns an AdomdDataReader.
Método público ExecuteScalar Executes the query, and returns the first column of the first row in the result set returned by the query.
Método público ExecuteXmlReader Runs the AdomdCommand and returns an System.Xml.XmlReader.
Método público GetHashCode (Se hereda de Object.)
Método público GetLifetimeService Importante para la seguridad. (Se hereda de MarshalByRefObject.)
Método público GetType (Se hereda de Object.)
Método público InitializeLifetimeService Importante para la seguridad. (Se hereda de MarshalByRefObject.)
Método público Prepare Verifies that the AdomdCommand can run.
Método público ToString (Se hereda de Component.)

Arriba

Eventos

  Nombre Descripción
Evento público Disposed (Se hereda de Component.)

Arriba

Implementaciones de interfaces explícitas

  Nombre Descripción
Implementación de interfaces explícitasMétodo privado ICloneable.Clone Creates a new object that is a copy of the current instance.
Implementación de interfaces explícitasPropiedad privada IDbCommand.Connection Gets or sets the AdomdConnection used by this instance of the AdomdCommand.
Implementación de interfaces explícitasMétodo privado IDbCommand.CreateParameter Creates a new instance of an IDbDataParameter object.
Implementación de interfaces explícitasMétodo privado IDbCommand.ExecuteReader() Executes the CommandText against the Connection, and builds an IDataReader.
Implementación de interfaces explícitasMétodo privado IDbCommand.ExecuteReader(CommandBehavior) Executes the CommandText against the Connection, and builds an IDataReader using one of the CommandBehaviour values.
Implementación de interfaces explícitasPropiedad privada IDbCommand.Parameters Gets the IDataParameterCollection.
Implementación de interfaces explícitasPropiedad privada IDbCommand.Transaction Gets or sets the transaction within which the command object runs.

Arriba

Seguridad para subprocesos

Cualquier miembro público static (Shared en Visual Basic) de este tipo es seguro para subprocesos. No se garantiza que los miembros de instancia sean seguros para subprocesos.

Vea también

Referencia

Espacio de nombres Microsoft.AnalysisServices.AdomdClient