lazarus/components/sqldb/sqldblaz.pas
vincents 58a04388c9 sqldb component:
- remove compatibility with fpc version < 2.0.4
* only enable ibconnection, mysql50connection and odbcconnection for win64

git-svn-id: trunk@11159 -
2007-05-17 20:34:28 +00:00

22 lines
407 B
ObjectPascal

{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
}
unit SQLDBLaz;
interface
uses
registersqldb, sqldb, ibconnection, pqconnection, LazarusPackageIntf;
implementation
procedure Register;
begin
RegisterUnit('registersqldb', @registersqldb.Register);
end;
initialization
RegisterPackage('SQLDBLaz', @Register);
end.