Values.ColumnMetadataSourceThe properties (metadata) of a column.
type nonrec t = {isCaseSensitive : Bool_.t option;A value that indicates whether the column is case-sensitive.
*)isCurrency : Bool_.t option;A value that indicates whether the column contains currency values.
*)isSigned : Bool_.t option;A value that indicates whether an integer column is signed.
*)label : String_.t option;The label for the column.
*)name : String_.t option;The name of the column.
*)nullable : Integer.t option;A value that indicates whether the column is nullable.
*)precision : Integer.t option;The precision value of a decimal number column, or the column length for a non-numeric column.
*)scale : Integer.t option;The scale value of a decimal number column.
*)schemaName : String_.t option;The name of the schema that contains the table that includes the column.
*)tableName : String_.t option;The name of the table that includes the column.
*)typeName : String_.t option;The database-specific data type of the column.
*)length : Integer.t option;The length of the column.
*)columnDefault : String_.t option;The default value of the column.
*)}