A cursor is a temporary context area created in the system when we executes SQL
statements.
A cursor contains information on a select statement and the rows of data accessed by it.
This temporary work area is used to hold the data retrieved from the database, and
manipulate this data. A cursor can hold more than...
Saturday, May 31, 2014
Friday, May 30, 2014
Saturday, May 3, 2014
Bind Variables
Suppose that you want to be to display the variables you use in your PL/SQL subprograms in SQL*Plus or you can use the same variables in multiple subprograms.
If you declare a variable in a PL/SQL , We cannot display that variable in SQL*Plus.Use a bind variable in PL/SQL to access the variable from SQL*Plus.
Bind variables are variables...