company logo

Binary :: Binary - Constructor

The function creates a binary data block handle.

Implementation overview

Implementation details

  1. 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.

  2. to list
  3. Default constructor
    Binary  :: Binary (  )

    The function creates an empty binary data block.

  4. to list
  5. 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
  6. to list