Page 1 of 1

FW 19.05 TDataRow and MEMO field - SOLVED -

Posted: Mon Jun 24, 2019 9:41 am
by Maurizio
Hello RAO

With FW 19.05 , TdataRaw , ADO MySQL the MEMO field are not present

This is table
https://drive.google.com/open?id=1ORQWf ... ACDEt011dy



This is the aData of TdadaRow

https://drive.google.com/open?id=1HWVtL ... Kj94VltHcx



This is the error

Time from start: 0 hours 5 mins 58 secs
Error occurred at: 24/06/2019, 10:55:41
Error description: Error BASE/1004 Message not found: TDATAROW:NOTE

Stack Calls
===========
Called from: .\source\function\HARBOUR.PRG => _CLSSETERROR( 247 )
Called from: .\source\classes\DATAROW.PRG => TDATAROW:NOTE( 2152 )


Regards Maurzio

Re: FW 19.05 TDataRow and MEMO field

Posted: Mon Jun 24, 2019 9:53 am
by nageswaragunupudi
Please apply this fix:

Go to line 758 in datarow.prg
You will see

Code: Select all

         if ! Empty( cType ) .and. cType $ "CDLNT="
 
Please change it as

Code: Select all

         if ! Empty( cType ) .and. cType $ "CDLNMT="
 
Please confirm if this fixes the problem.
Regret the inconvenience.

Re: FW 19.05 TDataRow and MEMO field

Posted: Mon Jun 24, 2019 10:12 am
by Maurizio
Perfect :D
Maurizio