Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How To Retrieve Data from an Cursor to a RECORD
How To Retrieve Data from an Cursor to a RECORD? - Oracle DBA FAQ - Working with Cursors in PL/SQL
✍: FYIcenter.com
If you have a cursor opened ready to use, you can also use the FETCH statement to retrieve data from the cursor into a RECORD variable as shown in the tutorial exercise below:
CREATE OR REPLACE PROCEDURE FYI_CENTER AS
CURSOR t_list IS SELECT first_name, last_name
FROM employees;
TYPE name_rec IS RECORD (
f_name VARCHAR2(10),
l_name VARCHAR2(10)
);
n name_rec;
BEGIN
OPEN t_list;
FETCH t_list INTO n;
DBMS_OUTPUT.PUT_LINE('Name = ' || n.f_name || ' '
|| n.l_name);
FETCH t_list INTO n;
DBMS_OUTPUT.PUT_LINE('Name = ' || n.f_name || ' '
|| n.l_name);
CLOSE t_list;
END;
/
Name = Ellen Abel
Name = Sundar Ande
2007-04-29, 5222👍, 0💬
Popular Posts:
How do we access attributes using “XmlReader”? Below snippets shows the way to access attributes. Fi...
How do we enable SQL Cache Dependency in ASP.NET 2.0? Below are the broader steps to enable a SQL Ca...
How To Wirte a Simple JUnit Test Class? This is a common test in a job interview. You should be able...
How do I debug thread ? This window is only seen when the program is running in debug mode. In windo...
How is normally a project management plan document organized ? PMP document forms the bible of a pro...