Used to specify a notation method of passing parameter values to the stored PL/SQL object.
property ProcNamedParams: boolean default False;
Positional Notation is used if OraStoredProc.Options.ProcNamedParams = False (default value). If True, Named Notation is used.
Named Notation allows passing parameter values in any order regardless of the position.
Sample of stored proc call with Named Notation:
credit_acct(amount => amt, acct_no => acct);