IF I run the code bellow with my previous version of FWH. I can see the value 3.3732. But if i run this same code with the new version of FWH, the value showed is 3.37. Do you know why ?
Code: Select all | Expand
function Main()
LOCAL oRs,oCn,oError,oQry,cQryMat
SET DATE BRIT
SET CENTURY ON
CursorWait()
oCn := Maria_Connect( aStr[1] )
oRs := oCn:Query("SELECT nfiscal,cmat,qte,qtedig FROM consumo WHERE nfiscal LIKE '000005829%'")
cQryMat := ""
DO WHILE .NOT. oRs:Eof()
cQryMat += "'"+oRs:cmat+"',"
? oRs:qte,oRs:qtedig,oRs:cmat
oRs:Skip()
ENDDO
oRs:GoTop()
RETURN NIL