In PowerBuilder application, How can I get the time:minute:seconds details which function executes with in (hh:mm:ss) time and which looping statement taking more time to execute?
Is there and command like PBDEBUG?
thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you want to make some profiling on your code
1 – go to
System Options/Profiling, checkEnable Tracingand enter the path of a non existing file inTrace file Name. Also, select the trace activities that you want to survey.2 – start your application and do the task that you want to analyze
3 – stop your program
4 – in Powerbuilder,
File/New.../Tooland select one of the profiling viewers, betweenProfiling class view,Profiling routine vieworProfiling trace view, depending on the type of analyze.Usualy, I get some useful timing information with the Trace view : times and hit counts.