I'm trying to trigger a DQL statement without triggering the TBO code,
I've seen several references to the following API call that achieves this.
apply,c,EXEC,QUERY,S,'{DQL}',FOR_UPDATE,B,T,BOF_DQL,B,F
this discussion talks to it:
https://community.emc.com/message/638470#638470
What I'm trying to do is convert this to a DFC session.apply() call much like the
DO_METHOD example discussed here.
https://community.emc.com/message/93097#93097
My question is mapping the API call to the argument lists, I haven't found any
documentation that spells it out and my first couple attempts didn't work right.
...
IDfList argList = new DfList();
{add arguments}
IDfList argTypes = new DfList();
{add argTypes}
IDfList argsValues = new DfList();
{add argValues}
col = session.apply(null, "EXEC", argList, argsTypes, argsValues);
...
Does anyone have a canned example or is there a specific document I can look at
to glean this information?