Registriert seit: 5. Jan 2005
Ort: Stadthagen
9.454 Beiträge
Delphi 10 Seattle Enterprise
|
AW: TADOConnection auf anderem Datenmodul wie TADOQuery
3. Dez 2014, 08:43
Nur so als Beispiel
Delphi-Quellcode:
TADODataModule = class( TDataModule )
public
procedure SetConnection( AConnection : TADOConnection );
end;
procedure TADODataModule.SetConnection( AConnection : TADOConnection );
var
LIdx : Integer;
begin
for Lidx := 0 to ComponentCount - 1 do
if Components[LIdx] is TCustomADODataSet then
( Components[Lidx] as TCustomADODataSet ).Connection := AConnection;
end;
Kaum macht man's richtig - schon funktioniert's
Zertifikat: Sir Rufo (Fingerprint: ea 0a 4c 14 0d b6 3a a4 c1 c5 b9 dc 90 9d f0 e9 de 13 da 60)
Geändert von Sir Rufo ( 3. Dez 2014 um 08:46 Uhr)
|