Various conversion functions.

Colors2RGBConverts the supplied red, green and blue values into a 32bit integer.
Double2StrConverts a double (64bit numeric value) value into a binary string.
Float2StrConverts a float (32bit numeric value) value into binary string.
Int642StrConverts a __int64 (64bit numeric value) value into the requested format.
Long2StrConverts a signed long (32bit numeric value) value into a binary string.
Num2BinaryConverts a 32-bit integer into a binary human readable string.
PG_ByteA2StrConverts a PostgreSQL ByteA value into a string.
PG_Str2ByteAConverts a string into an escaped PostgreSQL ByteA value.
RGB2ColorsSplits a RGB into it's component parts.
Short2StrConverts a signed short (16bit numeric value) value into a binary string.
Str2DoubleConverts a binary string into a double (64bit numeric value) .
Str2FloatConverts a binary string into a float (32bit numeric value) .
Str2Int64Converts a binary string into a __int64 (64bit numeric value).
Str2LongConverts a binary string into a signed long (32bit numeric value) .
Str2ShortConverts a binary string into a signed short (16bit numeric value) .
Str2UInt64Converts a binary string into a unsigned __int64 (64bit numeric value).
Str2ULongConverts a binary string into a unsigned long (32bit numeric value) .
Str2UShortConverts a binary string into a unsigned short (16bit numeric value) .
UInt642StrConverts an unsigned __int64 (64bit numeric value) value into the requested format.
ULong2StrConverts a unsigned long (32bit numeric value) value into a binary string.
UShort2StrConverts a unsigned short (16bit numeric value) value into a binary string.
Value2VariantConverts a variable or field of any type into a binary string.
Variant2ValueConverts a binary string created by Value2Variant into the original value.