DO_KEY built in:-
Executes the key trigger that corresponds to the specified built-in subprogram. If no such key trigger exists, then the specified subprogram executes. This behavior is analogous to pressing the corresponding function key.
Syntax:-
PROCEDURE DO_KEY(built-in_subprogram_name VARCHAR2);
DO_KEY restrictions:-
DO_KEY accepts built-in names only, not key names: DO_KEY(ENTER_QUERY). To accept a specific key name, use the EXECUTE_TRIGGER built-in: EXECUTE_TRIGGER('KEY_F11').
DO_KEY examples:-
BEGIN
Do_Key('Execute_Query');
END;
Executes the key trigger that corresponds to the specified built-in subprogram. If no such key trigger exists, then the specified subprogram executes. This behavior is analogous to pressing the corresponding function key.
Syntax:-
PROCEDURE DO_KEY(built-in_subprogram_name VARCHAR2);
DO_KEY restrictions:-
DO_KEY accepts built-in names only, not key names: DO_KEY(ENTER_QUERY). To accept a specific key name, use the EXECUTE_TRIGGER built-in: EXECUTE_TRIGGER('KEY_F11').
DO_KEY examples:-
BEGIN
Do_Key('Execute_Query');
END;
No comments:
Post a Comment