structname_fieldname_get

This form of the function applies to elements with a fixed size (not char, string or BLOB). The C data type of the value parameter is the data type of fieldname as defined in the database schema, and the prototype output by the schema processor to the generated API header. Handle is returned from classname_structname_read_handle().

Prototype

 
    MCO_RET	structname_fieldname_get(	/*IN*/ structname *handle, 
                         /*OUT*/ <type> *value );
 

Arguments

handle A pointer to a structname handle

value

A pointer to a variable of type type, into which will be read the value of fieldname from the object referenced by handle

Description

This form of the function applies to elements with a fixed size (not char, string or BLOB). The C data type of the value parameter is the data type of fieldname as defined in the database schema, and the prototype output by the schema processor to the generated API header. Handle is returned from classname_structname_read_handle().

Return Codes

See classname_fieldname_get()

Related Topics Link IconRelated Topics