2011年5月10日 星期二

Informix Debug方式

在stored procedure 中, 任一要trace的地方
set debug file to "xxxxx.out";

如果要trace所有的變數
trace on;



如果要trace些變數,則利用參數concation方式,
trace variableName1||variableName2 ;

最後記得要 將trace 關掉..
trace off;


create procedure spTest()
   define variableName1 varchar(10); 
  define variableName2 varchar(10);

  set debug file to 'abc.out';

  foreach
     select col1, col2 
         into  variableName1,variableName2
       from  testTable

      trace variableName1||variableName2 ;
  end foreach;

  trace off;
end procedure ;

沒有留言:

張貼留言

自動記錄滑鼠點選操作

為了一個需求,需要人工去點選幾個滑鼠的點選行為,找了幾種工具,覺得GS Auto Clicker最實用,極符合我的需求,尤其是多個固定位置的button點擊,解決了一個很耗時間的工作。 最後設定完預設hotkey F8為啟用鍵,就可以開始自動做工了。再按F8結束工作。 GS Au...