CFLBigTextToBase64String Procedure
Converts a BigText value to a Base64 encoded string. Handles large text content that exceeds the Text data type limit.
Overloads
| Name | Description |
|---|---|
| CFLBigTextToBase64String(BigText): Text | Converts a BigText value to a Base64 encoded string. |
| CFLBigTextToBase64String(BigText; BigText) | Converts a BigText value to a Base64 encoded BigText. |
CFLBigTextToBase64String(BigText) Procedure
Converts a BigText value to a Base64 encoded string. Handles large text content that exceeds the Text data type limit.
Signature
CFLBigTextToBase64String(Value: BigText) ReturnValue: Text
Parameters
Value BigText
The BigText to encode.
Returns
Text
The Base64 encoded string.
CFLBigTextToBase64String(BigText; BigText) Procedure
Converts a BigText value to a Base64 encoded BigText. Handles large text content and large Base64 results that exceed the Text data type limit.
Signature
CFLBigTextToBase64String(Value: BigText; var ReturnValue: BigText)
Parameters
Value BigText
The BigText to encode.
var ReturnValue BigText
The Base64 encoded BigText.