f_myget.srf 535 B

123456789101112131415
  1. $PBExportHeader$f_myget.srf
  2. $PBExportComments$getfromstring() 的替代--函数
  3. global type f_myget from function_object
  4. end type
  5. forward prototypes
  6. global function string f_myget (datawindow f_dw, long f_row, string f_col)
  7. end prototypes
  8. global function string f_myget (datawindow f_dw, long f_row, string f_col);string ls//因为oracle很多情况会返回null值,而null值跟一个有效值比较时,ls1=ls2和ls1<>ls2都为返回false
  9. ls=trim(f_dw.getitemstring(f_row,f_col))
  10. if isnull(ls) then ls=''
  11. return ls
  12. end function