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:
oTb := TArrayData():New( oBD,"SELECT * FROM vfarpt02 WHERE crelat = '0001' '" )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:
oRs := oBD:RowSet("SELECT * FROM vfarpt02 WHERE crelat = '0001' '" )IF I do xBrowse( oRs ) all the fieds are showed ok. Do you know why ?