79690095

Date: 2025-07-04 11:18:20
Score: 1
Natty:
Report link

You can do it like by subclassing:

type
  TADOConnection = class(Data.Win.ADODB.TADOConnection)
  protected
    procedure Loaded; override;
  end;

implementation

procedure TADOConnection.Loaded;
begin
  StreamedConnected := False;
  inherited;
end;

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: volchina2010