Drawbacks of UnicodeMemoParameters?
Posted: Tue 19 Apr 2011 12:02
Hello!
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:
Alternative - I read - I can set the global variable UnicodeMemoParameters
to true. What's the drawback of this solution? (or, what's the consequence. I didn't find docu on that parameter)
Thanks!
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!