Code assistant does not appear when string contains a semicolon

Worker

Member³
Paste the following in a Program Window:

Code:
begin
	dbms_job.isubmit(
		job=>NULL,
		what=>'NULL;',
		next_date=>NULL );
end;
Note that pressing F6 after the first comma pops up the code assistant, while pressing it after the second comma doesn't. Removing the semicolon from the string makes the code assistant pop up again.
 
Back
Top