Module Values.SqlParameterSource

A parameter used in a SQL statement.

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

    The name of the parameter.

    *)
  2. value : ParameterValue.t;
    (*

    The value of the parameter. Amazon Redshift implicitly converts to the proper data type. For more information, see Data types in the Amazon Redshift Database Developer Guide.

    *)
}
Sourceval context_ : string
Sourceval make : name:ParameterName.t -> value:ParameterValue.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ParameterName.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