Hi,
ich arbeite eigentlich immer mit
ADO unter Delphi Version 7.
Anbei ein Beispiel. Vielleicht hilft es.
Delphi-Quellcode:
if connectiontyp = '
MSSQL'
then begin //wird aus Auswahlbox ermittelt
try
adotest.ConnectionString :=
'
Provider=SQLOLEDB.1;' +
'
Integrated Security=SSPI;' +
'
Persist Security Info=False;' +
'
Initial Catalog='+ Database + '
;' +
'
Data Source=' + server + '
;';
adotest.Connected := true;
showmessage('
Verbindung erfolgreich getestet!');
except
showmessage('
Datenbank konnte nicht verbunden werden!');
end;
//try
end;
//if connectiontyp = 'MDB' then
Gruß