I found different behaviour of TDBF in DELPHI and fpc+lazarus.
(lazarus 0.9.22 +fpc 2.0.4)
By default Fields[i].Transliterate property is true in DELPHI
and is false in lazarus.
To set transliteration from OEM to ANSI one must include
some code in AfterOpen Event:

 for i := 0 to FieldCount-1 do
  if Fields[i] is TStringField then
    (Fields[i] as TStringField).Transliterate:=true;

--
Igor Zakhrebetkov

_________________________________________________________________
    To unsubscribe: mail [EMAIL PROTECTED] with
               "unsubscribe" as the Subject
  archives at http://www.lazarus.freepascal.org/mailarchives

Reply via email to