mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-14 01:56:36 +08:00
Silence EOleError when checking field value for NULL: "Multiple-step operation generated errors. Check each status value.". Closes #496
This commit is contained in:
@ -6468,8 +6468,15 @@ begin
|
||||
Result := False
|
||||
else if FEditingPrepared and Assigned(FCurrentUpdateRow) then
|
||||
Result := FCurrentUpdateRow[Column].NewIsNull
|
||||
else
|
||||
Result := FCurrentResults.Fields[Column].IsNull;
|
||||
else begin
|
||||
try
|
||||
Result := FCurrentResults.Fields[Column].IsNull;
|
||||
except
|
||||
// Silence error: "Multiple-step operation generated errors. Check each status value."
|
||||
// @see #496
|
||||
on E:EOleException do;
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user