63 lines
1.8 KiB
ObjectPascal

package ZComponent;
{$R *.res}
{$ALIGN 8}
{$ASSERTIONS ON}
{$BOOLEVAL OFF}
{$DEBUGINFO ON}
{$EXTENDEDSYNTAX ON}
{$IMPORTEDDATA ON}
{$IOCHECKS ON}
{$LOCALSYMBOLS ON}
{$LONGSTRINGS ON}
{$OPENSTRINGS ON}
{$OPTIMIZATION ON}
{$OVERFLOWCHECKS ON}
{$RANGECHECKS OFF}
{$REFERENCEINFO ON}
{$SAFEDIVIDE OFF}
{$STACKFRAMES ON}
{$TYPEDADDRESS OFF}
{$VARSTRINGCHECKS ON}
{$WRITEABLECONST OFF}
{$MINENUMSIZE 1}
{$IMAGEBASE $400000}
{$DESCRIPTION 'Zeos Database Components'}
{$LIBSUFFIX '90'}
{$RUNONLY}
{$IMPLICITBUILD OFF}
{$I ZPackages.inc}
requires
rtl,
dbrtl,
ZPlain,
ZDbc,
ZCore,
ZParseSql,
vclactnband,
vcl;
contains
ZSqlUpdate in '..\..\src\component\ZSqlUpdate.pas',
ZAbstractDataset in '..\..\src\component\ZAbstractDataset.pas',
ZAbstractRODataset in '..\..\src\component\ZAbstractRODataset.pas',
ZStreamBlob in '..\..\src\component\ZStreamBlob.pas',
ZAbstractConnection in '..\..\src\component\ZAbstractConnection.pas',
ZGroupedConnection in '..\..\src\component\ZGroupedConnection.pas',
ZConnectionGroup in '..\..\src\component\ZConnectionGroup.pas',
ZConnection in '..\..\src\component\ZConnection.pas',
ZDataset in '..\..\src\component\ZDataset.pas',
ZDatasetUtils in '..\..\src\component\ZDatasetUtils.pas',
ZSqlStrings in '..\..\src\component\ZSqlStrings.pas',
ZSqlProcessor in '..\..\src\component\ZSqlProcessor.pas',
ZSqlMonitor in '..\..\src\component\ZSqlMonitor.pas',
ZStoredProcedure in '..\..\src\component\ZStoredProcedure.pas',
ZAbstractTable in '..\..\src\component\ZAbstractTable.pas',
ZSqlMetadata in '..\..\src\component\ZSqlMetadata.pas',
ZSequence in '..\..\src\component\ZSequence.pas'
{$IFDEF ENABLE_INTERBASE}, ZIBEventAlerter in '..\..\src\component\ZIBEventAlerter.pas' {$ENDIF}
{$IFDEF ENABLE_POSTGRESQL}, ZPgEventAlerter in '..\..\src\component\ZPgEventAlerter.pas' {$ENDIF};
end.