Various conversion functions.
Colors2RGB | Converts the supplied red, green and blue values into a 32bit integer. |
Double2Str | Converts a double (64bit numeric value) value into a binary string. |
Float2Str | Converts a float (32bit numeric value) value into binary string. |
Int642Str | Converts a __int64 (64bit numeric value) value into the requested format. |
Long2Str | Converts a signed long (32bit numeric value) value into a binary string. |
Num2Binary | Converts a 32-bit integer into a binary human readable string. |
PG_ByteA2Str | Converts a PostgreSQL ByteA value into a string. |
PG_Str2ByteA | Converts a string into an escaped PostgreSQL ByteA value. |
RGB2Colors | Splits a RGB into it's component parts. |
Short2Str | Converts a signed short (16bit numeric value) value into a binary string. |
Str2Double | Converts a binary string into a double (64bit numeric value) . |
Str2Float | Converts a binary string into a float (32bit numeric value) . |
Str2Int64 | Converts a binary string into a __int64 (64bit numeric value). |
Str2Long | Converts a binary string into a signed long (32bit numeric value) . |
Str2Short | Converts a binary string into a signed short (16bit numeric value) . |
Str2UInt64 | Converts a binary string into a unsigned __int64 (64bit numeric value). |
Str2ULong | Converts a binary string into a unsigned long (32bit numeric value) . |
Str2UShort | Converts a binary string into a unsigned short (16bit numeric value) . |
UInt642Str | Converts an unsigned __int64 (64bit numeric value) value into the requested format. |
ULong2Str | Converts a unsigned long (32bit numeric value) value into a binary string. |
UShort2Str | Converts a unsigned short (16bit numeric value) value into a binary string. |
Value2Variant | Converts a variable or field of any type into a binary string. |
Variant2Value | Converts a binary string created by Value2Variant into the original value. |