Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> ERROR MESSAGES FROM THE BROWSER

ERROR MESSAGES FROM THE BROWSER

From: Javier Riera <javier_at_bitel.es>
Date: 1997/10/17
Message-ID: <34473B95.769F@bitel.es>#1/1

I am starting to develop web pages in PL/SQL and I would like to know:

        1.- How to use forms in PL/SQL to pass info between web pages?
        2.- Why does this cursor break my web page?

PROCEDURE begin

   (
....

   )
   IS

        cursor mi_cursor is
            select * from miuser.mitable;
   BEGIN
....

    OPEN mi_cursor; <--- Here breaks
    FOR mi_record IN mi_cursor LOOP
....

    END LOOP;
....

    CLOSE mi_cursor;
....

END;

        3.- Is there any way to see an error message in the browser
        that explain what really happens? 
        Actually it always shows the same message.

Thanks. Received on Fri Oct 17 1997 - 00:00:00 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US