InterviewSolution
| 1. |
Does Pl/sql Support "overloading"? Explain |
|
Answer» The concept of overloading in PL/SQL relates to the idea that you can define procedures and functions with the same NAME. PL/SQL does not look only at the REFERENCED name, however, to RESOLVE a procedure or function call. The count and data types of formal parameters are also considered. The concept of overloading in PL/SQL relates to the idea that you can define procedures and functions with the same name. PL/SQL does not look only at the referenced name, however, to resolve a procedure or function call. The count and data types of formal parameters are also considered. |
|