Given the following statement:
IDfId idObj = session.getIdByQualification(“dm_sysobject where object_name is not null”);
What is a possible problem with using getIdByQualification() in this manner?
A.
The assignment should be cast to SysObject.
B.
The “Select * from” portion is missing from the qualification.
C.
The qualification may solve for more than one Id, whereas the assignment of idObj requires
only one.
D.
The qualification does not specify a request for the Id (or “Select r_object_id from” is missing in
the qualification).