What is a cursor?

Oracle uses work area to execute SQL statements and store processing information PL/SQL construct called a cursor lets you name a work area and access its stored information A cursor is a mechanism used to fetch more than one row in a Pl/SQl block.

Showing Answers 1 - 7 of 7 Answers

aditi

  • May 24th, 2006
 

cursor is basically used when a select stmt returns multiple rows.

  Was this answer useful?  Yes

syam sundar

  • Aug 17th, 2007
 

Oracle ueses the private area for excute SQL statements and store processing information. The private area is called as CONTEXT AREA

CURSOR: cursor is a handle or pointer to the context area.

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions