首页  编辑  

检测系统是否已安装ADO驱动程序

Tags: /超级猛料/Database.数据库相关/ODBC、ADO、Access/   Date Created:

function ADOInstalled : Boolean;

var

 r : TRegistry;

 s : string;

begin

 r := TRegistry.create;

 try

     with r do

     begin

       RootKey := HKEY_CLASSES_ROOT;

       OpenKey( '\ADODB.Connection\CurVer', false );

       s := ReadString('');

       if s <> '' then Result := True

       else Result := False;

       CloseKey;

     end;

 finally

     r.free;

 end;

end;