InterviewSolution
| 1. |
How The Concept Of Overloading Is Implemented Within A Package? |
|
Answer» PL/SQL ALLOWS you to OVERLOAD the subprogram names and type methods. The package can include subprograms that have the same NAME as long as they have different FORMAL parameters. PL/SQL determines which subprogram to be called depending on the formal parameters. In PL/SQL, only packaged subprograms can be overloaded. PL/SQL allows you to overload the subprogram names and type methods. The package can include subprograms that have the same name as long as they have different formal parameters. PL/SQL determines which subprogram to be called depending on the formal parameters. In PL/SQL, only packaged subprograms can be overloaded. |
|