Module Values.ResultSetSource

The metadata and rows that make up a query result set. The metadata describes the column structure and data types. To return a ResultSet object, use GetQueryResults.

Sourcetype nonrec t = {
  1. rows : RowList.t option;
    (*

    The rows in the table.

    *)
  2. resultSetMetadata : ResultSetMetadata.t option;
    (*

    The metadata that describes the column structure and data types of a table of query results.

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