* Return an empty variant in Lookup if no record is found

git-svn-id: trunk@12540 -
This commit is contained in:
blikblum 2009-01-11 15:34:59 +00:00
parent b3df8becfb
commit 9d6694a692

View File

@ -1130,7 +1130,7 @@ begin
if TempItem <> nil then
Result := TempItem^.Row[FieldByName(ResultFields).FieldNo - 1]
else
Result := False;
Result := Null;
end;
procedure TCustomSqliteDataset.SetBookmarkData(Buffer: PChar; Data: Pointer);