A description of a single Cql column. Used to describe input to a Cql prepared query, or result of a select query.
Example #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="CqlParameter" /> class.
 /// </summary>
 public CqlParameter()
 {
     _column = new Column();
     _isNullable = true;
     _isFixed = false;
 }
Example #2
0
 internal CqlParameter(Column column)
 {
     _column = column;
     _isNullable = true;
     _isFixed = true;
 }