Module Values.SelectColumnSource

Details of the column that is returned by the query.

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

    Name of the column.

    *)
  2. type_ : Type.t option;
  3. databaseName : ResourceName.t option;
    (*

    Database that has this column.

    *)
  4. tableName : ResourceName.t option;
    (*

    Table within the database that has this column.

    *)
  5. aliased : NullableBoolean.t option;
    (*

    True, if the column name was aliased by the query. False otherwise.

    *)
}
Sourceval make : ?name:??? -> ?type_:??? -> ?databaseName:??? -> ?tableName:??? -> ?aliased:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * Awso.Botodata.value) 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