Values.VsamDetailAttributesSourceThe attributes of a VSAM type data set.
type nonrec t = {alternateKeys : AlternateKeyList.t option;The alternate key definitions, if any. A legacy dataset might not have any alternate key defined, but if those alternate keys definitions exist, provide them as some applications will make use of them.
*)cacheAtStartup : Boolean.t option;If set to True, enforces loading the data set into cache before itβs used by the application.
*)compressed : Boolean.t option;Indicates whether indexes for this dataset are stored as compressed values. If you have a large data set (typically > 100 Mb), consider setting this flag to True.
*)encoding : String20.t option;The character set used by the data set. Can be ASCII, EBCDIC, or unknown.
*)primaryKey : PrimaryKey.t option;The primary key of the data set.
*)recordFormat : String20.t option;The record format of the data set.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `List of
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `Integer of Integer.t
| `String of String_.t ])
list ]
list
| `String of String20.t
| `Structure of
(string * [> `Integer of Integer.t | `String of String_.t ]) list ])
list ]