dotConnect for Dynamics 365 Documentation
Devart.Data.Dynamics Namespace / DynamicsCommand Class
Members Example

In This Topic
    DynamicsCommand Class
    In This Topic
    Represents a SQL statement or stored procedure to execute against Dynamics CRM.
    Syntax
    Remarks
    The DynamicsCommand class provides the following methods for executing commands against Dynamics CRM:
    Item Description
    ExecuteReader Executes commands that return rows.
    ExecutePageReader Returns a specific subset of rows when paging through the results of a query.
    ExecuteNonQuery Executes SQL commands such as INSERT, DELETE, UPDATE.
    ExecuteScalar Retrieves a single value (for example, an aggregate value) from a data source.

    If execution of the command results in a fatal DynamicsException, the DynamicsConnection may close. However, the user can reopen the connection and continue.

    This class supports cross-form data binding with the InterForm Technology.

    Example
    The following example uses the ExecuteReader method of DynamicsCommand, along with DynamicsDataReader and DynamicsConnection, to select rows from a table.
    public void ReadMyData(string myConnString)
    {
      string mySelectQuery = "SELECT contactid, lastname FROM contact";
      DynamicsConnection dynamicsConnection = new DynamicsConnection(myConnString);
      DynamicsCommand dynamicsCommand = new DynamicsCommand(mySelectQuery,dynamicsConnection);
      dynamicsConnection.Open();
      DynamicsDataReader dynamicsReader = dynamicsCommand.ExecuteReader();
      try
      {
        while (dynamicsReader.Read())
        {
          Console.WriteLine(dynamicsReader.GetGuid(0).ToString() + ", " + dynamicsReader.GetString(1));
        }
      }
      finally
      {
      // always call Close when done reading.
      dynamicsReader.Close();
      // always call Close when done reading.
      dynamicsConnection.Close();
      }
    }
    Public Sub ReadMyData(myConnString As String)
      Dim mySelectQuery As String = "SELECT contactid, lastname FROM contact"
      Dim dynamicsConnection As New DynamicsConnection(myConnString)
      Dim dynamicsCommand As New DynamicsCommand(mySelectQuery, dynamicsConnection)
      dynamicsConnection.Open()
      Dim dynamicsReader As DynamicsDataReader = dynamicsCommand.ExecuteReader()
      Try
        While dynamicsReader.Read()
          Console.WriteLine(dynamicsReader.GetGuid(0).ToString() + ", " _
            + dynamicsReader.GetString(1))
        End While
      Finally
          ' always call Close when done reading.
          dynamicsReader.Close()
          ' always call Close when done with connection.
          dynamicsConnection.Close()
      End Try
    End Sub
    Inheritance Hierarchy

    System.Object
       System.MarshalByRefObject
          System.ComponentModel.Component
             System.Data.Common.DbCommand
                Devart.Common.DbCommandBase
                   Devart.Data.SqlShimCommand
                      Devart.Data.Dynamics.DynamicsCommand

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also