Module Values.ResultFrameSource

The result set returned by a SQL statement. This data structure is only used with the deprecated ExecuteSql operation. Use the BatchExecuteStatement or ExecuteStatement operation instead.

Sourcetype nonrec t = {
  1. resultSetMetadata : ResultSetMetadata.t option;
    (*

    The result-set metadata in the result set.

    *)
  2. records : Records.t option;
    (*

    The records in the result set.

    *)
}
Sourceval make : ?resultSetMetadata:??? -> ?records:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of Awso.Botodata.value list ]) list ] list | `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 ]) 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