ActiveReports Developer 7
QueryCommandType Enumeration
See Also 
GrapeCity.ActiveReports.v7 Assembly > GrapeCity.ActiveReports.PageReportModel Namespace : QueryCommandType Enumeration

Glossary Item Box

Specifies the type of query contained in the CommandText.

Syntax

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

Members

MemberDescription
StoredProcedureIndicates that the value of the CommandText is the name of a stored procedure to execute. The stored procedure must return a single result set.
TableDirectIndicates that the value of the CommandText is the name of a table from which to retrieve data. All data from the table is returned.
TextIndicates that the value of the CommandText is a text string to pass to the data source, for example, a Transact-SQL query.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         GrapeCity.ActiveReports.PageReportModel.QueryCommandType

See Also