sqliteds: * Use Value instead of AsString in SetMasterIndexValue

git-svn-id: trunk@15135 -
This commit is contained in:
blikblum 2010-04-11 01:18:04 +00:00
parent 7bad77aff8
commit 2ded0b93df

View File

@ -613,7 +613,7 @@ var
i: Integer;
begin
for i := 0 to FIndexFieldList.Count - 1 do
TField(FIndexFieldList[i]).AsString := TField(FMasterLink.Fields[i]).AsString;
TField(FIndexFieldList[i]).Value := TField(FMasterLink.Fields[i]).Value;
end;
procedure TCustomSqliteDataset.SetOptions(const AValue: TSqliteOptions);