EnumSqlDataSourceCommandType
Enum
Specifies how a SQL command string is interpreted by the data source.
Definition
Namespace:Telerik.Reporting
Assembly:Telerik.Reporting.dll
Syntax:
cs-api-definition
public enum SqlDataSourceCommandType
Fields
StoredProcedure
The command string contains the name of a stored procedure to execute.
Declaration
cs-api-definition
StoredProcedure = 1
Field Value
Remarks
Indicates that SelectCommand contains the name of a stored procedure that will be called with any provided parameters.
Text
The command string contains SQL text to execute directly.
Declaration
cs-api-definition
Text = 0
Field Value
Remarks
This is the default value and indicates that SelectCommand contains a SQL SELECT statement or other SQL text.