Debugging Pl/SQL code in conjuction with SQL Developer and Oracle HTTP Server -
Anyone has experience about the combination of Oracle HTP server and SQL developer. I have a web app that can get data For example
function flists () {var p = new revWindow ("_ chlist", "dialogHight: 450px; dialogue: 650px; resizable: Yes; status: no; book: no; "); Var obj = new object (); Obj.sizer = p; Rs = window.showModalDialog ("! Rev_xxx.getIssueList? _ref =" + frnd () + "& amp; _name = & amp; _code =" + (_issue.value? _issue.value: ""), OBJ, p. Jet ()); If (rs) _issue.value = rs.channel_code; } So when I
! In Rev_xxx.getIssueList
breakpoint is set and triggered how can I set up to SQL developer to capture this breakpoint?
Thanks
It's a little late but just as a suggestion if it There is still one issue:
- Do not debug but find out the PL / SQL code
- Just type in a simple logging table
Example:
Create table logs tab (SS timestamp default current_temstamp, tx varchar2 (2000)); There is a programmatic autonomy-transaction to create / change / process logs (variant to varchar2); Put in LogTab (Tx) values (tx); Committed; End; /
Comments
Post a Comment