User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
You're currently browsing the Oracle section within the Web Development category of DaniWeb, a massive community of 330,113 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 4,094 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our Oracle advertiser:
Views: 133 | Replies: 1 | Solved
Reply
Join Date: Apr 2008
Posts: 33
Reputation: veledrom is an unknown quantity at this point 
Rep Power: 1
Solved Threads: 0
veledrom veledrom is offline Offline
Light Poster

Cursor within cursor problem

  #1  
4 Days Ago
Hi guys,

Both cursor works if i don't use them in one Stored procedure. Both cursors return TRUE for(cursor_x%found). But, insert into process doen't work in cursor_1. Is there any structure problem?

Thanks

CREATE OR REPLACE PROCEDURE ADD_RENTAL_SP 
IS

-- cursor1
CURSOR cursor_1 IS 
SELECT ......
rec1 VARCHAR(15);
-- cursor2
CURSOR cursor_2 IS 
SELECT ......
rec2 VARCHAR(15);

BEGIN

OPEN cursor_2;
LOOP
FETCH cursor_2 INTO rec2;
IF ( cursor_2%found ) THEN
  INSERT INTO .....
    ----
    OPEN cursor_1;
    LOOP
    FETCH cursor_1 INTO rec1;
      IF ( cursor_1%found ) THEN
        INSERT INTO ...
        EXIT WHEN cursor_1%found;
      END IF;
    END LOOP;
    CLOSE cursor_1;
    ----
  EXIT WHEN cursor_2%found;
END IF;
END LOOP;

COMMIT;
CLOSE cursor_2;
END;
AddThis Social Bookmark Button
Reply With Quote  
Join Date: Apr 2008
Posts: 33
Reputation: veledrom is an unknown quantity at this point 
Rep Power: 1
Solved Threads: 0
veledrom veledrom is offline Offline
Light Poster

Re: Cursor within cursor problem

  #2  
4 Days Ago
Before OPEN cursor_1;, i did EXIT from "cursor_2". It was my mistake.
Reply With Quote  
Reply

Only community members can participate in forum threads. You must register or log in to contribute.

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 

DaniWeb Marketplace (Sponsored Links)
Thread Tools Display Modes

Similar Threads
Other Threads in the Oracle Forum

All times are GMT -4. The time now is 1:16 pm.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC