Is there a way to determine the version of the installed database driver using IbDac?
In my old code I've read the version from the registry under
HKLM\Software\Firebird Project\Firebird Server\Instances
but this makes troubles as you might have a 64bit Windows with 64 or 32 bit drivers...
I tried using TIbcVersionInfo but
Code: Select all
with TIbcVersionInfo.Create do
begin
ShowMessage('>'+ServerVersion+''+.ServerImplementation+''+Inttostr(ver.ServiceVersion)+'<');
end;
Thanks,
Ralf S.