TxQuery sort string fields in ascii not in ansi sequence.
To crrect that SortCompare_S function in xqbase (line 2165) must be
replaced by:
Function SortCompare_S( Recno: Integer; Const Value: String ): Integer;
Begin
SetRecno( Recno );
Result := AnsiCompareStr(FFields[Idx].AsString, Value);
if IsDesc then Result := - Result;
End;
Best regards
Branko
Original issue reported on code.google.com by bra...@burdian.si on 5 Dec 2009 at 8:44
Original issue reported on code.google.com by
bra...@burdian.si
on 5 Dec 2009 at 8:44