mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-10 16:18:44 +02:00

- remove compatibility with fpc version < 2.0.4 * only enable ibconnection, mysql50connection and odbcconnection for win64 git-svn-id: trunk@11159 -
22 lines
407 B
ObjectPascal
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.
|