ActiveReports Developer 7
CommandBehavior Enumeration
See Also 
GrapeCity.ActiveReports.Extensibility.v7 Assembly > GrapeCity.ActiveReports.Extensibility.Data Namespace : CommandBehavior Enumeration

Glossary Item Box

Specifies the kind of results an IDbCommand Interface returns. 

Syntax

Visual Basic (Declaration) 
Public Enum CommandBehavior 
   Inherits System.Enum
C# 
public enum CommandBehavior : System.Enum 

Members

MemberDescription
SchemaOnlyA single record is returned.
SingleResultOnly column information or the command's results are returned.
SingleRow
Indicates that the command result is expected to return a single row. Execution of the query may effect the database state. Data providers may or may not optimize the command based on this setting.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         GrapeCity.ActiveReports.Extensibility.Data.CommandBehavior

See Also