company logo

Property :: propertyAction - Execute property action

The function calls an action implemented in the property context. The function returns a result string filled by the context action.

When the action call fails, the function throws an exception.

Implementation overview

Implementation details

  1. - internal feature (not documented)
    odaba::String Property  :: propertyAction ( odaba::String &sActionName )
    • sActionName - Action name

      The action name is a name of an action implemented in the context class related to the database source or implemented as default action. Actions can be implemented as expressions, as C++ functions or as .NET function.

      In order to pass no action name, an empty string ( String() ) may be passed.

  2. to list
  3. - internal feature (not documented)
    odaba::String Property  :: propertyAction ( odaba::String &sActionName, odaba::String &sParameters )
    • sActionName - Action name

      The action name is a name of an action implemented in the context class related to the database source or implemented as default action. Actions can be implemented as expressions, as C++ functions or as .NET function.

      In order to pass no action name, an empty string ( String() ) may be passed.

    • sParameters - - internal feature (not documented)
  4. to list