how kill debug process in eclipse
807606May 2 2007 — edited May 2 2007I have a debug breakpoint set in eclipse like this roughly
Line1 : int x=0;
Line2: String x="a" + "b" ; // breakpoint set here
Line3: database insertion code here
What i want is , i want to kill process after breakpoint.
that is , i dont want to execute any code after breakpoint.
can i kill the process in eclipse debugging?
The reason i want is , i am using some dummy data and i dont want any dummy data to go into database and so i want to kill the debug process and code flow just after breakpoint.
I dont know whether eclipse can some support this .
please let me know this trick.
Thank you