FW 19.05 TDataRow and MEMO field - SOLVED -

Post Reply
User avatar
Maurizio
Posts: 705
Joined: Mon Oct 10, 2005 1:29 pm
Contact:

FW 19.05 TDataRow and MEMO field - SOLVED -

Post 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
Last edited by Maurizio on Mon Jun 24, 2019 10:12 am, edited 1 time in total.
User avatar
nageswaragunupudi
Posts: 8017
Joined: Sun Nov 19, 2006 5:22 am
Location: India
Contact:

Re: FW 19.05 TDataRow and MEMO field

Post 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.
Regards

G. N. Rao.
Hyderabad, India
User avatar
Maurizio
Posts: 705
Joined: Mon Oct 10, 2005 1:29 pm
Contact:

Re: FW 19.05 TDataRow and MEMO field

Post by Maurizio »

Perfect :D
Maurizio
Post Reply