Click or drag to resize

CqlParameter Properties

The CqlParameter type exposes the following members.

Properties
  NameDescription
Public propertyDbType
Gets or sets the DbType of the parameter.
(Overrides DbParameter.DbType.)
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 DbParameter.Direction.)
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 DbParameter.ParameterName.)
Public propertySize
The size of the parameter.
(Overrides DbParameter.Size.)
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 DbParameter.SourceColumn.)
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 DbParameter.SourceColumnNullMapping.)
Public propertySourceVersion
Gets or sets the DataRowVersion to use when loading Value.
(Overrides DbParameter.SourceVersion.)
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 DbParameter.Value.)
Top
See Also