Mimer Data Provider v9.2

MimerCommand Class

This class represents an SQL statement used to execute against the current data source.

For a list of all members of this type, see MimerCommand Members.

System.Object
   MarshalByRefObject
      Component
         MimerCommand

[Visual Basic]
NotInheritable Public Class MimerCommand
Inherits Component
Implements IDbCommand, ICloneable
[C#]
public sealed class MimerCommand : Component, IDbCommand, ICloneable

Thread Safety

Public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.

Remarks

An MimerCommand is used by setting the CommandText (and possibly CommandType) properties. Depending on the type of statement entered one of the three of the following methods are used:

MethodDescription
ExecuteNonQueryUsed for SQL statements that do not return a result, for example INSERT, UPDATE, and DELETE statements.
ExecuteReaderUsed for select statements and procuder calls that return a result set.
ExecuteScalarUsed for select statements that return a single value.

Requirements

Namespace: Mimer.Data.Client

Assembly: Mimer.Data.Client (in Mimer.Data.Client.dll)

See Also

MimerCommand Members | Mimer.Data.Client Namespace