> Did you try CURSORSETPROP("FetchMemo", .T.)?
>
> I have no problem retrieving memo fields (MySQL datatype as Text, MediumText, etc). They are automatically converted to memo in VFP using SQLEXEC().
>
> Another solution is to use CURSORADAPTER() where you can specify the field types exactly you want it.
Can you do that in the query?
SQLEXEC(handle, "SELECT col1, CAST(coltext AS MediumText ) AS memotext FROM ..", 'crsx' )
-Anders