DDieterich / DTGen

DTGEN Code Generation Tool for Relational Designers (See Wiki Branch)
http://dtgen.org
3 stars 0 forks source link

UTIL.ERR is not capturing Error Location #62

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?

  -) When an error is generated, and UTIL.ERR is called, the error location is captured as the call to UTIL.ERR

What is the expected output? What do you see instead?

  -) UTIL.ERR should capture the error location.

Please use labels and text to provide additional information.

Change the generation of UTIL.LOG to the following:

   insert into util_log
         (dtm
         ,usr
         ,txt
         ,loc
         )
      values
         (systimestamp
         ,usr_buff
         ,substr(txt_in,1,4000)
         ,nvl(loc_in, fcs_txt)
         );

Original issue reported on code.google.com by Duane.Di...@gmail.com on 29 Aug 2012 at 6:24