Mimer SQL Data Provider
MimerCommand Class
Members 




Mimer.Data.Client Namespace : MimerCommand Class
This class is used to execute an SQL statement for a specific connection.
Object Model
MimerCommand Class
Syntax
'Declaration
 
Public NotInheritable Class MimerCommand 
   Inherits System.Data.Common.DbCommand
public sealed class MimerCommand : System.Data.Common.DbCommand 
public class MimerCommand = class(System.Data.Common.DbCommand)sealed; 
public sealed class MimerCommand extends System.Data.Common.DbCommand
public __gc __sealed class MimerCommand : public System.Data.Common.DbCommand 
Remarks
A 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:
Method Description
ExecuteNonQuery Used for SQL statements that do not return a result, for example INSERT, UPDATE, and DELETE statements.
ExecuteReader Used for select statements and procedure calls that return a result set.
ExecuteScalar Used for select statements that return a single value.
Inheritance Hierarchy

System.Object
   System.MarshalByRefObject
      System.ComponentModel.Component
         System.Data.Common.DbCommand
            Mimer.Data.Client.MimerCommand

Requirements

.NET Framework
Version 2.0 or later

See Also

Reference

MimerCommand Members
Mimer.Data.Client Namespace