delphi version 10
ms
sql server 2005
connection string bau ich mir in delphi auf und nicht über sogenannte
ado-kompo`s
momentan hab ich es mir so ausgedacht ..aber leider funkt. das net so ..
SQL-Code:
SQL := '
select db_id(''
testversion''
)';
adoConn := TADOConnection.
Create(nil);
try
adoConn.ConnectionString := '
Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security ..';
if (
not adoConn.Connected)
then
adoConn.
Open;
if (adoConn.
Execute(
SQL) =
NULL)
then
Prozessparameter_Stammdaten_loeschen(Sender);
if (adoConn.Connected)
then
adoConn.
Close;
finally
FreeAndNil(adoConn);
end;
end;