Module Values.FieldSource

A data value in a column.

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

    A value that indicates whether the data is NULL.

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

    A value of the Boolean data type.

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

    A value of the long data type.

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

    A value of the double data type.

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

    A value of the string data type.

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

    A value of the BLOB data type.

    *)
}
Sourceval make : ?isNull:??? -> ?booleanValue:??? -> ?longValue:??? -> ?doubleValue:??? -> ?stringValue:??? -> ?blobValue:??? -> unit -> t
Sourceval 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 ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t