company logo

BaseContext :: result - Result property

There is no direct way to pass an result from a context action/function to the caller. One may, however, set the result property, which is available for both, the access or GUI handle and the context instance.

When the context handle does not refer to a valid context instance the property throws an exception.

Return value:  Result string ( odaba::String & )

The result string contains the result of an action or operation.

Implementation overview

Implementation details

  1. Get result
    odaba::String BaseContext  :: result (  )

    The function returns the result string, usually set by a context action or handler function calling the "set result" operation. (result(sValue);).

  2. to list
  3. Set result
    odaba::String BaseContext  :: result ( odaba::String &sResult )

    The function is called in order to pass an action result from the context function/action to the database handle.

    • sResult - Result string

      The result string contains the result of an action or operation.

  4. to list