Can't install on BDS/Delphi 2006
Moderators: gto, cipto_kh, EgonHugeist
Can't install on BDS/Delphi 2006
Hello,
I'm now havin BDS 2006 and I tried to install the Zeos 6.5.1 in it.
I selected the D9-Package. Everything works fine, but when I try to compile and install the ZComponent Packge the Compiler stops at "TLoginEvent". How can I solve this problem.
I hope you can help me.
Best regards,
CG2003
I'm now havin BDS 2006 and I tried to install the Zeos 6.5.1 in it.
I selected the D9-Package. Everything works fine, but when I try to compile and install the ZComponent Packge the Compiler stops at "TLoginEvent". How can I solve this problem.
I hope you can help me.
Best regards,
CG2003
OK, I start Delphi 2006 for Win32.
I open the "ZeosDbo.bdsgroup" from the "delphi9" directory.
I can compile/install the "ZCore.bpl", "ZParseSql.bpl", "ZPlain.bpl" and "ZDbc.bpl" packages.
But when I try to compile/install the last Package "ZComponent.bpl", I get the following error:
"[Pascal Error] ZConnection.pas(107): E2003 Undeclared identifier: 'TLoginEvent'
[Pascal Warning] ZAbstractRODataset.pas(310): W1000 Symbol 'PSGetTableName' is deprecated
[Pascal Warning] ZAbstractRODataset.pas(311): W1000 Symbol 'PSGetQuoteChar' is deprecated
[Pascal Warning] ZAbstractRODataset.pas(320): W1000 Symbol 'PSGetKeyFields' is deprecated
[Pascal Fatal Error] ZAbstractRODataset.pas(384): F2063 Could not compile used unit '..\..\src\component\ZDatasetUtils.pas'"
that's in the Unit "ZConnection".
I hope anybody can help me...
I open the "ZeosDbo.bdsgroup" from the "delphi9" directory.
I can compile/install the "ZCore.bpl", "ZParseSql.bpl", "ZPlain.bpl" and "ZDbc.bpl" packages.
But when I try to compile/install the last Package "ZComponent.bpl", I get the following error:
"[Pascal Error] ZConnection.pas(107): E2003 Undeclared identifier: 'TLoginEvent'
[Pascal Warning] ZAbstractRODataset.pas(310): W1000 Symbol 'PSGetTableName' is deprecated
[Pascal Warning] ZAbstractRODataset.pas(311): W1000 Symbol 'PSGetQuoteChar' is deprecated
[Pascal Warning] ZAbstractRODataset.pas(320): W1000 Symbol 'PSGetKeyFields' is deprecated
[Pascal Fatal Error] ZAbstractRODataset.pas(384): F2063 Could not compile used unit '..\..\src\component\ZDatasetUtils.pas'"
that's in the Unit "ZConnection".
I hope anybody can help me...
Hi,
to solve this issue please add
into uses clause in ZConnection.pas
The definition of TLoginEvent has been moved here from db unit.
This worked for me.
tygrys
to solve this issue please add
Code: Select all
DBCommonTypes
The definition of TLoginEvent has been moved here from db unit.
This worked for me.
tygrys
Great, the components / packages are installed, but now I have a big problem.
I have an application, with a TZTable and a TZConnection.
Everything works fine, when I compile it under Delphi 7, but when I compile it under Delphi 2006 I get an error:
"TestTable: Cannot modify a read-only dataset".
But in the object-inspector the property "ReadOnly" is "False".
What should I do???
I have an application, with a TZTable and a TZConnection.
Everything works fine, when I compile it under Delphi 7, but when I compile it under Delphi 2006 I get an error:
"TestTable: Cannot modify a read-only dataset".
But in the object-inspector the property "ReadOnly" is "False".
What should I do???