Examine this PeopleCode snippet:
class OCP_ROWSET extends Row set;
property integer FilledRowCount get;
method OCP_ROWSET(&strRecName As string, &strDataFld As
string, &strGetOrCreate As string);
method InsertRow(&iRow As integer) Returns boolean;
Select the correct statements. (Choose all that apply.)
A.
OCP_ROWSET is the constructor method for the OCP_ROWSET class.
B.
Executing the RO_ROWSET method instantiates an object of the OCP_ROWSET class.
C.
The OCP_ROWSET method runs automatically whenever an object is instantiated using the
OCP_ROWSET class.
D.
The OCP_ROWSET method must initialize the ROWSET class.
E.
The OCP_ROWSET method is added to the ROWSET class, and, by extension, to any
instances of the ROWSET class.
Explanation: