| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> c.d.o.misc -> ERROR MESSAGES FROM THE BROWSER
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
![]() |
![]() |