You've already forked lazarus-ccr
Rx DBUtils: use UTF8CompareText in function DataSetLocateThrough
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2711 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -401,9 +401,9 @@ var
|
||||
Delete(S, Length(S1) + 1, MaxInt);
|
||||
|
||||
if (loCaseInsensitive in Options) then
|
||||
Result := AnsiCompareText(S, S1) = 0
|
||||
Result := UTF8CompareText(S, S1) = 0
|
||||
else
|
||||
Result := AnsiCompareStr(S, S1) = 0;
|
||||
Result := UTF8CompareStr(S, S1) = 0;
|
||||
end
|
||||
// else Result := false //(Field.Value = Value);
|
||||
else Result := (Field.Value = Value);
|
||||
|
Reference in New Issue
Block a user