I'm creating an object TARRAYDATA from a table where I have a memo field. Something like this:
- Code: Select all Expand view
- 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:
- Code: Select all Expand view
- oRs := oBD:RowSet("SELECT * FROM vfarpt02 WHERE crelat = '0001' '" )
IF I do xBrowse( oRs ) all the fieds are showed ok. Do you know why ?