Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Program line ?
According to my knowledge, yes. See Thomas Kyte's web pages for details.
I've done it and it works --- PL/SQL block name + line number
Oh, twist my arm here is the code:
callstack IN VARCHAR2,
filename OUT VARCHAR2,
linenum OUT PLS_INTEGER
)
IS
nPos1 PLS_INTEGER;
nPos2 PLS_INTEGER;
line VARCHAR2(256);
linenumStr VARCHAR2(256);
BEGIN
nPos1 := INSTR(callstack, CHR(10), 1, 3); nPos2 := INSTR(callstack, CHR(10), 1, 4); line := SUBSTR(callstack, nPos1 +1, nPos2 - nPos1 -1);
nPos1 := INSTR(line, ' ');
linenumStr := LTRIM(SUBSTR(line, nPos1));
nPos1 := INSTR(linenumStr, ' ');
linenumStr := SUBSTR(linenumStr, 1, nPos1 -1);
nPos1 := INSTR(line, ' ', -1);
filename := SUBSTR(line, nPos1 +1);
linenum := TO_NUMBER(linenumStr);
EXCEPTION
WHEN OTHERS THEN
BEGIN
DBMS_OUTPUT.PUT_LINE('Error! : ' || SQLERRM()); RETURN;
callstack VARCHAR2(512) := DBMS_UTILITY.FORMAT_CALL_STACK;
filename VARCHAR2(512);
linenum PLS_INTEGER;
grabPositionInfo(callstack, filename, linenum);
Paul Cluiss
Richardson, Texas
"M. Armaghan Saqib" wrote:
> According to my knowledge; No.
>
> Creating a global variable and then setting it after every (say) 10
> lines and then using this in your PLSQL error handler might be of some
> help.
>
> regards,
> M. Armaghan Saqib
> +---------------------------------------------------------------
> | 1. SQL PlusPlus => Add power to SQL Plus command line
> | 2. SQL Link for XL => Integrate Oracle with XL
> | 3. Oracle CBT with sample GL Accounting System
> | Download free: http://www.geocities.com/armaghan/
> +---------------------------------------------------------------
> Elrond <elrond_at_icn.pl> wrote in message
> news:880t2l$ocq$1_at_helios.man.lublin.pl...
> > Is there a way to obtain a line in procedure, where was an error ?
> > I have a procedure, and in ON-ERROR trigger i want to now which line
> of this
> > procedure was wrong ?
> > sincerelly
> > Maciej Myrcha
>
> Sent via Deja.com http://www.deja.com/
> Before you buy.
Received on Fri Feb 11 2000 - 12:32:23 CST
![]() |
![]() |