InterviewSolution
Saved Bookmarks
| 1. |
What Is A Package Cursor ? |
|
Answer» A PACKAGE cursor is a cursor which you DECLARE in the package specification without an SQL STATEMENT. The SQL statement for the cursor is attached DYNAMICALLY at runtime from CALLING procedures. A package cursor is a cursor which you declare in the package specification without an SQL statement. The SQL statement for the cursor is attached dynamically at runtime from calling procedures. |
|