Module Values.ResultSetMetadataSource

The metadata of the result set returned by a SQL statement.

Sourcetype nonrec t = {
  1. columnCount : Long.t option;
    (*

    The number of columns in the result set.

    *)
  2. columnMetadata : Metadata.t option;
    (*

    The metadata of the columns in the result set.

    *)
}
Sourceval make : ?columnCount:??? -> ?columnMetadata:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `String of String_.t ]) list ] list | `Long of Long.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