Values.FieldSourceA data value in a column.
type nonrec t = {isNull : BoxedBoolean.t option;A value that indicates whether the data is NULL.
*)booleanValue : BoxedBoolean.t option;A value of the Boolean data type.
*)longValue : BoxedLong.t option;A value of the long data type.
*)doubleValue : BoxedDouble.t option;A value of the double data type.
*)stringValue : String_.t option;A value of the string data type.
*)blobValue : Blob.t option;A value of the BLOB data type.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Blob of Blob.t
| `Boolean of BoxedBoolean.t
| `Double of BoxedDouble.t
| `Long of BoxedLong.t
| `String of String_.t ])
list ]