I'm begginer with C++ and I have one doubt about the function defined in
Type.h: "virtual SDO_API const Property& getProperty(const char*
propertyName) const = 0". It's supposed to return a reference to a Property
object that has the name equal to the parameter propertyName, but if there
is no Property object with this name? What does this function return?
I tried to do this...
if (type.getProperty("ID") == NULL)
...but as long as far as I know it's not possible. Is there a way to check
if the function has found Property object with the specified name or not.
Adriano Crestani