Module Values.Value

Contains the value of a column. This data structure is only used with the deprecated ExecuteSql operation. Use the BatchExecuteStatement or ExecuteStatement operation instead.

Sourcetype nonrec t = {
  1. isNull : BoxedBoolean.t option;
    (*

    A NULL value.

    *)
  2. bitValue : BoxedBoolean.t option;
    (*

    A value for a column of BIT data type.

    *)
  3. bigIntValue : BoxedLong.t option;
    (*

    A value for a column of big integer data type.

    *)
  4. intValue : BoxedInteger.t option;
    (*

    A value for a column of integer data type.

    *)
  5. doubleValue : BoxedDouble.t option;
    (*

    A value for a column of double data type.

    *)
  6. realValue : BoxedFloat.t option;
    (*

    A value for a column of real data type.

    *)
  7. stringValue : String_.t option;
    (*

    A value for a column of string data type.

    *)
  8. blobValue : Blob.t option;
    (*

    A value for a column of BLOB data type.

    *)
  9. arrayValues : ArrayValueList.t option;
    (*

    An array of column values.

    *)
  10. structValue : StructValue.t option;
    (*

    A value for a column of STRUCT data type.

    *)
}
Sourceval make : ?isNull:BoxedBoolean.t -> ?bitValue:BoxedBoolean.t -> ?bigIntValue:BoxedLong.t -> ?intValue:BoxedInteger.t -> ?doubleValue:BoxedDouble.t -> ?realValue:BoxedFloat.t -> ?stringValue:String_.t -> ?blobValue:Blob.t -> ?arrayValues:ArrayValueList.t -> ?structValue:StructValue.t -> unit -> t
Sourceval to_value : t -> Awso.Botodata.value
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t