Values.ValueContains the value of a column. This data structure is only used with the deprecated ExecuteSql operation. Use the BatchExecuteStatement or ExecuteStatement operation instead.
type nonrec t = {isNull : BoxedBoolean.t option;A NULL value.
*)bitValue : BoxedBoolean.t option;A value for a column of BIT data type.
*)bigIntValue : BoxedLong.t option;A value for a column of big integer data type.
*)intValue : BoxedInteger.t option;A value for a column of integer data type.
*)doubleValue : BoxedDouble.t option;A value for a column of double data type.
*)realValue : BoxedFloat.t option;A value for a column of real data type.
*)stringValue : String_.t option;A value for a column of string data type.
*)blobValue : Blob.t option;A value for a column of BLOB data type.
*)arrayValues : ArrayValueList.t option;An array of column values.
*)structValue : StructValue.t option;A value for a column of STRUCT data type.
*)}val make :
?isNull:BoxedBoolean.t ->
?bitValue:BoxedBoolean.t ->
?bigIntValue:BoxedLong.t ->
?intValue:BoxedInteger.t ->
?doubleValue:BoxedDouble.t ->
?realValue:BoxedFloat.t ->
?stringValue:String_.t ->
?blobValue:Blob.t ->
?arrayValues:ArrayValueList.t ->
?structValue:StructValue.t ->
unit ->
t