datatype class %xsd.hexBinary
extends %Binary
ODBC Type: VARCHAR
This data type is used to represent binary data
that will be encoded using the hex encoding for XML serialization.
Internally, this is stored as a string containing a binary value.
When a %Binary data type value is projected to a client application,
such as when it is used in a Java, Visual Basic (ActiveX), ODBC, or JDBC application,
the Caché Object Server performs no translations or conversions on it.
That is, the actual binary data is sent to and from the client without any Unicode (or other) translations.
parameter MAXLEN;
There is no length restriction for %xsd binary types.
parameter XSDTYPE = "hexBinary";
Declares the XSD type used when projecting XML schemas.
classmethod LogicalToXSD(%val As %xsd.hexBinary)
as %String
Converts the Cache %Binary value to the SOAP base64 encoded value.
classmethod XSDToLogical(%val As %String)
as %xsd.hexBinary
Converts the SOAP encoded base64 input value to a Cache value.