Class QueryInfoParameter
Represents a single parameter for database query execution with name, value, and type information.
Inheritance
Namespace: Telerik.Reporting.Data.Schema
Assembly: Telerik.Reporting.Data.Schema.dll
Syntax
public class QueryInfoParameter
Remarks
Used to pass typed parameter values to parameterized SQL queries and stored procedures.
Constructors
QueryInfoParameter()
Declaration
public QueryInfoParameter()
Properties
DbType
Gets or sets the database type of the parameter for proper type conversion.
Declaration
public DbType DbType { get; set; }
Property Value
|
System.Data.DbType
|
Remarks
This property is required and ensures the parameter value is converted to the correct database type during execution.
Name
Gets or sets the parameter name as it appears in the SQL query.
Declaration
public string Name { get; set; }
Property Value
|
System.String
|
Remarks
This property is required and must match the parameter name in the SQL command text or stored procedure.
Value
Gets or sets the parameter value to be passed to the query.
Declaration
public object Value { get; set; }
Property Value
|
System.Object
|
Remarks
The value type should be compatible with the specified DbType for proper query execution.