TARRAYDATA + MEMO Fields (solved)
Posted: Mon Jul 20, 2020 5:45 pm
Hi Guys,
I'm creating an object TARRAYDATA from a table where I have a memo field. Something like this:
IF I try to do xBrowse( oTb ) , all memo fields are showed in xbrowse with empty values. If I create a rowset by the same way:
IF I do xBrowse( oRs ) all the fieds are showed ok. Do you know why ?
I'm creating an object TARRAYDATA from a table where I have a memo field. Something like this:
Code: Select all
oTb := TArrayData():New( oBD,"SELECT * FROM vfarpt02 WHERE crelat = '0001' '" )
Code: Select all
oRs := oBD:RowSet("SELECT * FROM vfarpt02 WHERE crelat = '0001' '" )
IF I do xBrowse( oRs ) all the fieds are showed ok. Do you know why ?