Module Values.ColumnInfo

Contains the metadata for query results such as the column names, data types, and other attributes.

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

    The name of the result set column. The name of the result set is available for columns of all data types except for arrays.

    *)
  2. type_ : Type.t option;
    (*

    The data type of the result set column. The data type can be a scalar or complex. Scalar data types are integers, strings, doubles, Booleans, and others. Complex data types are types such as arrays, rows, and others.

    *)
}
Sourceval make : ?name:String_.t -> ?type_:Type.t -> unit -> t
Sourceval to_value : t -> Awso.Botodata.value
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t