Componentes.Terceros.UserCo.../internal/2.31RC1/1/Packages/Connectors/UCMySQLDACConn/UCMySQLDACConnReg.pas
2009-02-27 17:17:29 +00:00

18 lines
221 B
ObjectPascal

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