Entries categorized as Package
Difference between a FUNCTION, PROCEDURE and PACKAGE
Explain the difference between a FUNCTION, PROCEDURE and PACKAGE. Â A function and procedure are the same in that they are intended to be a collection of PL/SQL code that carries a single task. While a procedure does not have to return any values to the calling application, a function will return a single value. Read More...
Package
What is a Package ? Â A Package is a collection of related procedures, functions, variables and other package constructs together as a unit in the database. Read More...