Componentes.Terceros.UserCo.../internal/2.20/2/Packages/Connectors/UCMySQLDACConn/UCMySQLDACConnReg.pas

18 lines
217 B
ObjectPascal
Raw Permalink Normal View History

unit UCMySQLDACReg;
interface
uses Classes;
procedure Register;
implementation
uses UCMySQLDACConn;
procedure Register;
begin
RegisterComponents('UC Connectors', [TUCMySQLDACConn]);
end;
end.