Class SqlDataSourceParameter
Represents a parameter in a Sql
Inherited Members
Namespace: Telerik.Reporting
Assembly: Telerik.Reporting.dll
Syntax
public class SqlDataSourceParameter : DataSourceParameter, INotifyPropertyChanged, INamedObject
Constructors
SqlDataSourceParameter()
Initializes a new instance of the Sql
Declaration
public SqlDataSourceParameter()
SqlDataSourceParameter(String)
Initializes a new instance of the Sql
Declaration
public SqlDataSourceParameter(string name)
Parameters
System. Specifies the name of the parameter. |
SqlDataSourceParameter(String, DbType)
Initializes a new instance of the Sql
Declaration
public SqlDataSourceParameter(string name, DbType dataType)
Parameters
System. Specifies the name of the parameter. |
System. Specifies the data type of the parameter. |
SqlDataSourceParameter(String, DbType, Object)
Initializes a new instance of the Sql
Declaration
public SqlDataSourceParameter(string name, DbType dataType, object value)
Parameters
System. Specifies the name of the parameter. |
System. Specifies the data type of the parameter. |
System. Specifies the value of the parameter. |
Properties
DbType
Gets or sets the data type of the parameter.
Declaration
public DbType DbType { get; set; }
Property Value
System.
|