Subject Detecting FireBird
Author Tom Deprez
Hi,

Is it possible to detect if Firebird is installed on a system?
When I run my program on such a system, the program freezes. I use the
following code and it just hangs, it doesn't return an exception...:

try
Connected := True;
Result := True;
except
on E:Exception do begin
MessageDlg(EFirebirdNoConnection, mtError, [mbOk], 0);
end;

Thanks in advance,
Tom Deprez