* drop workaround for application crash on WinXP, when loading newer libmariadb (see #79)
* raise TDbLib's own exception instead of baking an own one with less details. Probably helps in debugging: https://www.heidisql.com/forum.php?t=34044
* rename EDatabaseError to EDbError, to overcome naming conflict in DB unit
* load libpq.dll always with path, which should anyway work better than without it. See http://www.heidisql.com/forum.php?t=22514
This commit is contained in:
Ansgar Becker
2019-07-08 20:23:05 +02:00
parent 4f9613b05c
commit 2a91a13b42
18 changed files with 162 additions and 185 deletions

View File

@ -526,7 +526,7 @@ begin
btnDiscard.Enabled := Modified;
Mainform.actRunRoutines.Enabled := True;
except
on E:EDatabaseError do begin
on E:EDbError do begin
ErrorDialog(E.Message);
Result := mrAbort;
end;