Module Values.NamedQuerySource

A query, where QueryString contains the SQL statements that make up the query.

Sourcetype nonrec t = {
  1. name : NameString.t option;
    (*

    The query name.

    *)
  2. description : DescriptionString.t option;
    (*

    The query description.

    *)
  3. database : DatabaseString.t option;
    (*

    The database to which the query belongs.

    *)
  4. queryString : QueryString.t option;
    (*

    The SQL statements that make up the query.

    *)
  5. namedQueryId : NamedQueryId.t option;
    (*

    The unique identifier of the query.

    *)
  6. workGroup : WorkGroupName.t option;
    (*

    The name of the workgroup that contains the named query.

    *)
}
Sourceval make : ?name:??? -> ?description:??? -> ?database:??? -> ?queryString:??? -> ?namedQueryId:??? -> ?workGroup:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NameString.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