feature: show stored proc overloads in code assistant

Peter H.

Member²
[checked on plsqldev 13.0.3]
When I declare a package with overloaded procedure...

SQL:
create or replace package test_pkg
is

procedure proc_1(overload_1 in number);
procedure proc_1(overload_2 in varchar2);
procedure proc_1(overload_3 in date);

procedure proc_2(overload_1 in number);
procedure proc_2(overload_2 in varchar2);
procedure proc_2(overload_3 in date);

end test_pkg;

..., and I type test_package. and wait for a Code assistant to show up, it shows only one proc_1 and only one proc_2.

Please make it show all available procedures, distinguishing overloads by explicitly shown parameter list (if short enough) or by an overload number (from data dictionary). The test window allows for choosing an overload nicely, why not incorporating it into all editors?
 
Last edited:
The Code Assistant will show an overload selector at the bottom of the list. Press the buttons to select a specific overloading.
 
Hi, Marco.

Thanks for replying. I still don't get to the overloads in the IDE, neither the user manual mentions anything about overloads. See my failing attempts with the short package shown above...
=youtu.be
 
Back
Top