Oracle
  Home arrow Oracle arrow Page 2 - Database Interaction with PL/SQL: Expl...
Dev Shed Forums 
Administration  
AJAX  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Forums Sitemap 
IBM® developerWorks 
Sun Developer Network 
Dedicated Servers 
E-Commerce Hosting 
Linux Web Hosting 
Managed Hosting 
Small Business Hosting 
Actuate Whitepapers 
VeriSign Whitepapers 
VPS Hosting 
Weekly Newsletter

 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
ORACLE

Database Interaction with PL/SQL: Explict Cursors in Depth
By: Jagadish Chatarji
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 4 stars4 stars4 stars4 stars4 stars / 23
    2005-08-02

    Table of Contents:
  • Database Interaction with PL/SQL: Explict Cursors in Depth
  • Working with more than one cursor
  • How the program works
  • Further approaches to the above program
  • Cursors with parameters – a complicated example
  • Can we use JOINS in cursors?

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT

    Stay one step ahead of the competition. Evaluate and give feedback on some of the hottest web development tools on the market today. Make your opinion heard! Click Here

    Database Interaction with PL/SQL: Explict Cursors in Depth - Working with more than one cursor


    (Page 2 of 6 )

    We can work with more than one cursor at a time by using nested loops. Let us consider the following example:

    declare

      cursor c_emp is

            select ename,deptno from emp;

      cursor c_dept is

            select deptno,dname from dept;

      r_emp c_emp%rowtype;

      r_dept      c_dept%rowtype;

    begin

      open c_dept;

      loop

            fetch c_dept into r_dept;

            exit when c_dept%notfound;

    dbms_output.put_line('-----------------');

            dbms_output.put_line(r_dept.dname);

            dbms_output.put_line('-----------------');

            open c_emp;

            loop

                  fetch c_emp into r_emp;

                  exit when c_emp%notfound;

                  if r_emp.deptno = r_dept.deptno then

                        dbms_output.put_line(r_emp.ename);

                  end if;

            end loop;

            close c_emp;

      end loop;

      close c_dept;

    end;

     

    Before discussing such a lengthy program, let us see the output of above program:

    -----------------
    ACCOUNTING
    -----------------
    KING
    CLARK
    MILLER
    -----------------
    RESEARCH
    -----------------
    JONES
    FORD

    And so on. It displays all employees separated and categorized under department names. The next section explains the above program in a great deal of detail.

    More Oracle Articles
    More By Jagadish Chatarji


       · Hello guys, this is my in-depth article on working with explicit cursors in PL/SQL....
       · Thank you very much for your in depth look at cursors. It helps me see what else can...
     

       

    ORACLE ARTICLES

    - Tuning PL/SQL Code
    - Debugging PL/SQL Code
    - Testing PL/SQL Code
    - Working With PL/SQL Code
    - Conditional Compilation for Oracle Database ...
    - Compile-Time Warnings for Oracle DB 10g
    - Compiling PL/SQL Code for an Oracle Database
    - Troubleshooting PL/SQL Code
    - Managing PL/SQL Code
    - Data Manipulation and More for HTML DB Appli...
    - Oracle Database Fundamentals
    - Adding Processes to HTML DB Applications
    - Adding Computations, Processes, and Validati...
    - Sub-templates and More with Oracle HTML DB
    - Focusing on Templates in Oracle HTML DB





    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 1 hosted by Hostway