Retrieves an object from an ODM object class by its ID.
Object Data Manager Library (libodm.a)
#include <odmi.h>
struct ClassName *odm_get_by_id( ClassSymbol, ObjectID, ReturnData)
CLASS_SYMBOL ClassSymbol;
int ObjectID;
struct ClassName *ReturnData;
The odm_get_by_id subroutine retrieves an object from an object class. The object to be retrieved is specified by passing its ObjectID parameter from its corresponding ClassName structure.
Item | Description |
---|---|
ClassSymbol | Specifies a class symbol identifier of the form ClassName_CLASS, which is declared in the .h file created by the odmcreate command. |
ObjectID | Specifies an identifier retrieved from the corresponding ClassName structure of the object class. |
ReturnData | Specifies a pointer to an instance of the C language structure corresponding to the object class referenced by the ClassSymbol parameter. The structure is declared in the .h file created by the odmcreate command and has the same name as the object class. |
Upon successful completion, a pointer to the ClassName structure containing the object is returned. If the odm_get_by_id subroutine is unsuccessful, a value of -1 is returned and the odmerrno variable is set to an error code.
Failure of the odm_get_by_id subroutine sets the odmerrno variable to one of the following error codes:
See Object Data Manager (ODM) error codes in AIX® Version 7.1 Technical Reference: Base Operating System and Extensions, Volume 1 for explanations of the ODM error codes.