Zdbc120.bpl not found

The alpha/beta tester's forum for ZeosLib 7.0.x series

Report problems concerning our Delphi 2009+ version and new Zeoslib 7.0 features here.

This is a forum that will be removed once the 7.X version goes into stable!!

Moderators: gto, EgonHugeist, olehs

Locked
jcthiery
Fresh Boarder
Fresh Boarder
Posts: 3
Joined: 28.12.2008, 18:41

Zdbc120.bpl not found

Post by jcthiery »

Hy,

I just tried to install the lates version from SVN to Delphi 2009, everything compiles fine, but when I try to isntall the Design Package ther is an Error: Zdbc120.bpl not found!

Is this problem due to Delphi, or ZEOS ? I allready tried to reinstall ZEOS!

sincerely

christian
User avatar
mdaems
Zeos Project Manager
Zeos Project Manager
Posts: 2766
Joined: 20.09.2005, 15:28
Location: Brussels, Belgium
Contact:

Post by mdaems »

Sounds like a search path problem in Delphi. I think I've set the package files in a way that puts all files in the packages/delphi12/build directory.

Mark
Image
jcthiery
Fresh Boarder
Fresh Boarder
Posts: 3
Joined: 28.12.2008, 18:41

Post by jcthiery »

I allread set seachr path to the build directory.....
seawolf
Zeos Dev Team *
Zeos Dev Team *
Posts: 385
Joined: 04.06.2008, 19:50
Contact:

Post by seawolf »

That file seems not exists.
Open Zdbc.dproj and change ZDbc120.bpl to ZDbc.bpl
TheEdge
Fresh Boarder
Fresh Boarder
Posts: 15
Joined: 11.12.2008, 02:44

Post by TheEdge »

There is no need to change the file name. Make sure that the "Lib Suffix" is set to "120" (no quotes) as this is what actually produces the ZDBC120.bpl
Buby
Fresh Boarder
Fresh Boarder
Posts: 3
Joined: 15.01.2009, 12:23

Post by Buby »

Hello,
ihave the same problem .. Zdbc120.bpl is not found ...
Lib Sufix is set to 120 and path are alredy point to the build path

Solution? =S

i am tring to install it with Rad2009
Jaza
Fresh Boarder
Fresh Boarder
Posts: 2
Joined: 10.01.2009, 13:48

Post by Jaza »

Zdbc120.bpl cannot be found on the system path...
Buby
Fresh Boarder
Fresh Boarder
Posts: 3
Joined: 15.01.2009, 12:23

Post by Buby »

Uhm maybe.... i have solved building the bpl in another direcotry ,,, but now each time i try use it ..i got an erreo ZDbc mus be recompiled. ... grrr :S
Jaza
Fresh Boarder
Fresh Boarder
Posts: 2
Joined: 10.01.2009, 13:48

Post by Jaza »

In my opinion the solution is to add zeos bpl folder to the system/user path. In some cases D2009 need to be restarted. Sometimes it is good to delete prevous compiled bpls. And look for any D2007 Zeos packages on then path.
Buby
Fresh Boarder
Fresh Boarder
Posts: 3
Joined: 15.01.2009, 12:23

Post by Buby »

Uhm is a clean installation of d2009 without older zeoslib isntalled, i have jsut installed 3 other components ... and other 3 work fine ...relay dont know why this is creating so many porblem ... :S
jcthiery
Fresh Boarder
Fresh Boarder
Posts: 3
Joined: 28.12.2008, 18:41

solution

Post by jcthiery »

thank you for all your help!

I found the solution:

Delphi does not search in any path-directory for bpl's. bpl's must be stored or copied to the /bin folder of delphi installation.



christian
gto
Zeos Dev Team
Zeos Dev Team
Posts: 278
Joined: 11.11.2005, 18:35
Location: Porto Alegre / Brasil

Re: solution

Post by gto »

jcthiery wrote:thank you for all your help!

I found the solution:

Delphi does not search in any path-directory for bpl's. bpl's must be stored or copied to the /bin folder of delphi installation.



christian
That solved your problem, but it's not true.
Delphi 2009 actually searches in /bin folder (which is current of compiler/linker) and C:\Documents and Settings\All Users\Documents\RAD Studio\6.0\Bpl (Windows xp).
Use the FU!!!!!IN Google !

gto's Zeos Quick Start Guide

Te Amo Taís!
wesleymilan
Fresh Boarder
Fresh Boarder
Posts: 1
Joined: 28.03.2009, 02:52
Location: Brazil

Solution

Post by wesleymilan »

GTO you're right, Delphi search for BPL and DCU files into C:\Documents and Settings\All Users\Documentos\RAD Studio\6.0\Bpl

I've copy my file to there and it's work. But, where can I change this parameter into the Delphi 2009 IDE, to make Delphi search on my folder? Or better, can I configure this only to a project?

Tnx
andresayang
Fresh Boarder
Fresh Boarder
Posts: 15
Joined: 13.01.2009, 09:20

Post by andresayang »

GTO you're right, Delphi search for BPL and DCU files into C:\Documents and Settings\All Users\Documentos\RAD Studio\6.0\Bpl

I've copy my file to there and it's work. But, where can I change this parameter into the Delphi 2009 IDE, to make Delphi search on my folder? Or better, can I configure this only to a project?

Tnx
You can easily configure this in delphi adding "$(BDSCOMMONDIR)\Bpl" in library path
or
Change
<DCC_BplOutput>build</DCC_BplOutput>
<DCC_DcpOutput>build</DCC_DcpOutput>
to
<DCC_BplOutput>$(BDSCOMMONDIR)\Bpl</DCC_BplOutput>
<DCC_DcpOutput>$(BDSCOMMONDIR)\Dcp</DCC_DcpOutput>

in all ".dproj" files

You may also use MsBuildg to edit the .dproj" files
Locked