> > 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
Hi,
Yes I would be able to do that but I would still get a c(255) result. For my the working solution is like Barak has pointed: with 5.1 you need to tag the correct flag.
I will now also try his other solution as well.
Best regards,
Koen