InterviewSolution
Saved Bookmarks
| 1. |
What Is The Minimum Requirement To Create A Package? |
|
Answer» PACKAGE SPECIFICATION, which declares CONSTRUCTS, such as variables, constants, user-defined exceptions, and cursors, is enough to CREATE a complete package. Package body is not required if there are no procedures and FUNCTIONS to be defined in the package. Package specification, which declares constructs, such as variables, constants, user-defined exceptions, and cursors, is enough to create a complete package. Package body is not required if there are no procedures and functions to be defined in the package. |
|