robsuttonjr
MIS
I am using scatter memvar to take data from a cursor and insert it into a dbf in a database. The problem is when I look in the memo field copied to the table there is no data. Is there a way to transfer the data in the memo field by using scatter memvar and insert?
Code:
SELECT Ctest
GO TOP
SCAN
SCATTER MEMVAR
INSERT INTO test FROM MEMVAR
ENDSCAN
Code:
SELECT Ctest
GO TOP
SCAN
SCATTER MEMVAR
INSERT INTO test FROM MEMVAR
ENDSCAN