Binary :: Binary - Constructor
The function creates a binary data block handle.
Implementation overview
- Copy constructor
Binary :: Binary ( cBinary ) - Default constructor
Binary :: Binary (  ) - Create binary from string
Binary :: Binary ( sValue )
Implementation details
-
Copy constructor
Binary  :: Binary ( odaba::Binary &cBinary )
The function creates a copy handle for the binary data block passed in cBinary. Data is not duplicated as long as it remains unchanged (reference count).
- cBinary
- Binary data block handle
Constant reference to a binary data block handle, which may contain binary data up to 2 GB.
to list
- cBinary
- Binary data block handle
-
Default constructor
Binary  :: Binary (  )
The function creates an empty binary data block.
to list
-
Create binary from string
Binary  :: Binary ( odaba::String &sValue )
The constructor creates a binary object with the string value passed in sValue (conversion from String to Binary)
- sValue - String value
to list