I am converting an entire app from Delphi2007/IBX to Delphi2010/IBDac.
From time to time I ran into problems when I wanted to write unicode-Memos.
A solution was code like this:
Code: Select all
qryEval.ParamByName('foo').AsMemoRef.IsUniCode:=True;
qryEval.ParamByName('foo').AsMemo:=Content;
to true. What's the drawback of this solution? (or, what's the consequence. I didn't find docu on that parameter)
Thanks!