Module Values.SqlStatementResultSource

The result of 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. resultFrame : ResultFrame.t option;
    (*

    The result set of the SQL statement.

    *)
  2. numberOfRecordsUpdated : RecordsUpdated.t option;
    (*

    The number of records updated by a SQL statement.

    *)
}
Sourceval make : ?resultFrame:??? -> ?numberOfRecordsUpdated:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of RecordsUpdated.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 ]) 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