Skip to Main Content

Java Development Tools

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

pl/sql remote debugging from Eclipse.

user1337763Sep 13 2011 — edited Sep 13 2011
Hello,

we have the setting for Eclipse - Weblogic - SQL developer.

I am able to debug pl/sql in sql developer from Eclipse when i type the following dbms_debug_jdwp line inside java code.

//For Remote debugging only
CallableStatement debugStatement = connection.prepareCall
("begin DBMS_DEBUG_JDWP.CONNECT_TCP('localhost', 4000 ); end;");
debugStatement.execute(); //Create remote debug session.

But, architect does not like the idea that developers put the unnecessary code inside the java file. If i can create the JDWP remote debug session from Eclipse without putting the code, the architect will accept.

Is there any way to create remote debug session without typing CallableStatement statement inside Eclipse?
It does not have to be from Eclipse. If i can create the remote session from Weblogic or oracle....
One thing i can think of is create the trigger during oracle login...

Thanks,
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Oct 11 2011
Added on Sep 13 2011
1 comment
477 views