fhermisch
02-25-02, 06:49
| Hello ! Is it possible to get the line-number where the last error ocurred ? At example: CREATE OR REPLACE PROCEDURE do_stupid IS tempNum Number; BEGIN FOR i IN 1..5 LOOP temp := sysdate; END LOOP; tempNum := 2; tempNum := tempNum / 0; tempNum := 3; EXCEPTION WHEN OTHERS THEN -- i want to access the line-number of the error "tempnum / 0" END do_stupid; Thank You ! Florian |