Click or drag to resize

CqlParameter Class

Represents a Cql parameter.
Inheritance Hierarchy
SystemObject
  SystemMarshalByRefObject
    System.Data.CommonDbParameter
      Dse.DataCqlParameter

Namespace:  Dse.Data
Assembly:  Dse (in Dse.dll) Version: 2.9.0
Syntax
C#
public class CqlParameter : DbParameter

The CqlParameter type exposes the following members.

Constructors
  NameDescription
Public methodCqlParameter
Initializes a new instance of the CqlParameter class.
Public methodCqlParameter(String)
Initializes a new instance of the CqlParameter class.
Public methodCqlParameter(String, Object)
Initializes a new instance of the CqlParameter class. The type of the parameter will be guessed from the value.
Top
Properties
  NameDescription
Public propertyDbType
Gets or sets the DbType of the parameter.
(Overrides DbParameterDbType.)
Public propertyDirection
Gets or sets a value indicating whether the parameter is input-only, output-only, bidirectional, or a stored procedure return value parameter.
(Overrides DbParameterDirection.)
Public propertyIsNullable
Gets a value indicating whether the parameter accepts null values.
(Overrides DbParameter.IsNullable.)
Public propertyParameterName
Gets or sets the name of the IDataParameter.
(Overrides DbParameterParameterName.)
Public propertySize
The size of the parameter.
(Overrides DbParameterSize.)
Public propertySourceColumn
Gets or sets the name of the source column that is mapped to the DataSet and used for loading or returning the Value.
(Overrides DbParameterSourceColumn.)
Public propertySourceColumnNullMapping
Sets or gets a value which indicates whether the source column is nullable. This allows DbCommandBuilder to correctly generate Update statements for nullable columns.
(Overrides DbParameterSourceColumnNullMapping.)
Public propertySourceVersion
Gets or sets the DataRowVersion to use when loading Value.
(Overrides DbParameterSourceVersion.)
Public propertyValue
Gets or sets the value of the parameter. If no type information was provided earlier, the type of the parameter will be guessed from the value's type.
(Overrides DbParameterValue.)
Top
Methods
  NameDescription
Public methodResetDbType
Resets the DbType property to its original settings.
(Overrides DbParameterResetDbType.)
Top
See Also