Module Values.ColumnDefinitionSource

The definition of a column in a tabular Dataset.

Sourcetype nonrec t = {
  1. dataType : ColumnDataType.t option;
    (*

    Data type of a column. STRING – A String data type. CHAR – A char data type. INTEGER – An integer data type. TINYINT – A tinyint data type. SMALLINT – A smallint data type. BIGINT – A bigint data type. FLOAT – A float data type. DOUBLE – A double data type. DATE – A date data type. DATETIME – A datetime data type. BOOLEAN – A boolean data type. BINARY – A binary data type.

    *)
  2. columnName : ColumnName.t option;
    (*

    The name of a column.

    *)
  3. columnDescription : ColumnDescription.t option;
    (*

    Description for a column.

    *)
}
Sourceval make : ?dataType:??? -> ?columnName:??? -> ?columnDescription:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ColumnName.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