t100 debug常用指令

  1. 1.     r.d 程式代號
  2. Find (Ctrl+F) => Find Next(F3).
  3. 設中斷點(Toggle):Double Click => Run/Continue the Program(F5) 執行程式

ð  程式執行到中斷點會回到r.d

  1. 看值按放大鏡Inspect => 儲存Variable按Add Watch
  2. Step Over(F10):到下一行
  3. Step Into(F11):進入Function
  4. Step Out(Shift+F11):離開Function
  5. Run /Execute Debugger Command  (Ctrl+D)下指令設中斷點,由TopMenu-Run选项进入

   「break [function:line] if expression」 b 22196(行數) if 變數=  

在r.r之前,先做一个动作:export FGLSQLDEBUG=9,就可以在xshell中看到明确的报错信息                 

請利用選項RUNàExecute Debugger Command

輸下下面指令

  • Breakstatus0

      watch STATUS if STATUS

  • Breakg_cnt大於10之時

      watch g_cnt if g_cnt > 10

  • Breakfunction cl_err285行且當g_cnt大於10之時

      b lib_cl_err:285 if g_cnt > 10

   *  b 1080  if g_xrda_d[1].xrdaua001='140014'

b 行數 if 業務員= ‘140014’

T100-----调试程序,快速定位到错误行

1、r.d 作业编码 
2、ctrl+d  3、输入 watch g_errparam.code if g_errparam.code='错误编码',

你可能感兴趣的:(t100 debug常用指令)