<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
<channel>
<title>EZPDO User Forums : Support</title>
<link>http://www.ezpdo.net/forum</link>
<description> EZPDO User Forums</description>
<language>en</language>
<docs>http://backend.userland.com/rss</docs>
<item>
<title>Project dead? in Support : General discussions</title>
<link>http://www.ezpdo.net/forum/viewtopic.php?pid=3230#p3230</link>
<guid isPermaLink="false">3230@http://www.ezpdo.net/forum</guid>
<description>Topic: Project dead?

Message: Hi,somehow I've the impression, that this project is dead! Could it be? Maybe the main developers should post an comment about it. For me and I think for many others it's important to know, how this project go forward.I like ezpdo very much but if I know, that it is discontinued, I would migrate my stuff to another one. It's important for me, that all runs and doesn't stop working with updating/changing the php version for example.prodigy7
</description>
<pubDate>Tue, 20 Apr 2010 02:29:48 -0400</pubDate>
</item>
<item>
<title>Support for php 5.3+? in Support : General discussions</title>
<link>http://www.ezpdo.net/forum/viewtopic.php?pid=3229#p3229</link>
<guid isPermaLink="false">3229@http://www.ezpdo.net/forum</guid>
<description>Topic: Support for php 5.3+?

Message: Bump!
</description>
<pubDate>Tue, 23 Mar 2010 16:32:22 -0400</pubDate>
</item>
<item>
<title>Support for php 5.3+? in Support : General discussions</title>
<link>http://www.ezpdo.net/forum/viewtopic.php?pid=3228#p3228</link>
<guid isPermaLink="false">3228@http://www.ezpdo.net/forum</guid>
<description>Topic: Support for php 5.3+?

Message: There seems to be lack of activity with the code. Is there any hope of revamping the project and also, will there be support for php 5.3 ?Btw, thanks for a wonderful ORM.
</description>
<pubDate>Tue, 16 Mar 2010 08:05:45 -0400</pubDate>
</item>
<item>
<title>Inverse Attributes on Inherited entities in Support : General discussions</title>
<link>http://www.ezpdo.net/forum/viewtopic.php?pid=3226#p3226</link>
<guid isPermaLink="false">3226@http://www.ezpdo.net/forum</guid>
<description>Topic: Inverse Attributes on Inherited entities

Message: Hello, I did face some problem yesterday. You see, I have this directory structure:&#60;entities_dir&#62;│&#160; &#160;Estimate.php│&#160; &#160;Item.php│&#160; &#160;Orderr.php│&#160; &#160;└───base&#160; &#160; &#160; &#160; EstimateBase.php&#160; &#160; &#160; &#160; ItemBase.php&#160; &#160; &#160; &#160; OrderrBase.phpThe Orderr class inherits from OrderrBase, I need this structure for being able to overwrite generated code (the one in base class) without overwrite the user's custom code (hte one in Item,php and Orderr.php).&#160; The problem arose when I try to declare some attributes inverse, this is the relevant part of the code:OrderrBase class
Code:abstract class OrderrBase
{
....... other fields here......

   /**
     * Item list for each order. Please note here the inverse attribute is declared on Item and not on ItemBase
     * @var Item
     * @orm composed_of many Item inverse(orderr)
     */
    public $order_items;

...... other method declaration here etc .....
}
The Orderr class only contain methods stubs for user implementation declared in Base class.ItemBase class
Code:abstract class ItemBase
{
.......

   /**
     * Order agregating the item. Please note here the inverse attribute is declared on Orderr and not on OrderrBase
     * @var Orderr
     * @orm composed_of one Orderr inverse(order_items)
     */
    public $orderr;
.......
}
With the Item class happens the same as for Orderr. With this configuration I get this error log:log file
Code:Jan 26 02:23:12 epClassCompiler [info] Parsing file [W:\wwwroot\stasuite\staoffice-cur-uktest.local\cor.api\model\entities\Estimate.php] - start
Jan 26 02:23:12 epClassParser [info] Parsing class [Estimate]
Jan 26 02:23:12 epClassParser [info] Parsing class [Estimate] - end.
Jan 26 02:23:12 epClassCompiler [info] Parsing file [W:\wwwroot\stasuite\staoffice-cur-uktest.local\cor.api\model\entities\Estimate.php] - end
Jan 26 02:23:12 epClassCompiler [info] Parsing file [W:\wwwroot\stasuite\staoffice-cur-uktest.local\cor.api\model\entities\Item.php] - start
Jan 26 02:23:12 epClassParser [info] Parsing class [Item]
Jan 26 02:23:12 epClassParser [info] Parsing class [Item] - end.
Jan 26 02:23:12 epClassCompiler [info] Parsing file [W:\wwwroot\stasuite\staoffice-cur-uktest.local\cor.api\model\entities\Item.php] - end
Jan 26 02:23:12 epClassCompiler [info] Parsing file [W:\wwwroot\stasuite\staoffice-cur-uktest.local\cor.api\model\entities\Orderr.php] - start
Jan 26 02:23:12 epClassParser [info] Parsing class [Orderr]
Jan 26 02:23:12 epClassParser [info] Parsing class [Orderr] - end.
Jan 26 02:23:12 epClassCompiler [info] Parsing file [W:\wwwroot\stasuite\staoffice-cur-uktest.local\cor.api\model\entities\Orderr.php] - end
Jan 26 02:23:12 epClassCompiler [info] Parsing file [W:\wwwroot\stasuite\staoffice-cur-uktest.local\cor.api\model\entities\base\EstimateBase.php] - start
Jan 26 02:23:12 epClassParser [info] Parsing class [EstimateBase]
Jan 26 02:23:12 epClassParser [info] Parsing class [EstimateBase] - end.
Jan 26 02:23:12 epClassCompiler [info] Parsing file [W:\wwwroot\stasuite\staoffice-cur-uktest.local\cor.api\model\entities\base\EstimateBase.php] - end
Jan 26 02:23:12 epClassCompiler [info] Parsing file [W:\wwwroot\stasuite\staoffice-cur-uktest.local\cor.api\model\entities\base\ItemBase.php] - start
Jan 26 02:23:12 epClassParser [info] Parsing class [ItemBase]
Jan 26 02:23:12 epClassParser [info] Parsing class [ItemBase] - end.
Jan 26 02:23:12 epClassCompiler [info] Parsing file [W:\wwwroot\stasuite\staoffice-cur-uktest.local\cor.api\model\entities\base\ItemBase.php] - end
Jan 26 02:23:12 epClassCompiler [info] Parsing file [W:\wwwroot\stasuite\staoffice-cur-uktest.local\cor.api\model\entities\base\OrderrBase.php] - start
Jan 26 02:23:12 epClassParser [info] Parsing class [OrderrBase]
Jan 26 02:23:12 epClassParser [info] Parsing class [OrderrBase] - end.
Jan 26 02:23:12 epClassCompiler [info] Parsing file [W:\wwwroot\stasuite\staoffice-cur-uktest.local\cor.api\model\entities\base\OrderrBase.php] - end
Jan 26 02:23:12 epGenRuntimeConfig [error] Class mapping info is invalid (
Inverse of [ItemBase::orderr] (Orderr::order_items) does not exist
Inverse of [OrderrBase::order_items] (Item::orderr) does not exist
)
Well, I found out a work around, since the relation were expressed by means of final classes in hierarchy (Item and Orderr), everything works smoothly when I change the declaration to OrderrBase and ItemBase like this:
Code://On ItemBase class

   /**
     * Order agregating the item.
     * @var Orderr
     * @orm composed_of one OrderrBase inverse(order_items)
     */
    public $orderr;

//On OrderrBase class
   /**
     * Item list for each order
     * @var Item
     * @orm composed_of many ItemBase inverse(orderr)
     */
    public $order_items;
I hope you see my point with this. So my questions are:1. Can have a better directory structure?, let say, having the base classes on &#60;entity_dir&#62; and place the entities classes for implementation on another dir (the attributes declaration will be only on base classes). Will this interfere on ezpdo work?2. Is there another way to do this (having in mind that I need to separate the code that is generated&#160; from the one that is coded by user), because with a more complex data model, let say having entities inheriting from another entitties I can loose functionality leaving out of the game the implementation classes (Item, Orderr).Hope to be clear, sorry if I post a large topic.Please any idea would help. Thanks for listen and for this great frameworkGreetings David
</description>
<pubDate>Tue, 26 Jan 2010 09:58:30 -0500</pubDate>
</item>
<item>
<title>ezpdo.net was down for 24 days in Support : General discussions</title>
<link>http://www.ezpdo.net/forum/viewtopic.php?pid=3224#p3224</link>
<guid isPermaLink="false">3224@http://www.ezpdo.net/forum</guid>
<description>Topic: ezpdo.net was down for 24 days

Message: Just to let everyone know. I would like to know what is the excuse for such a thing?
</description>
<pubDate>Thu, 31 Dec 2009 05:17:29 -0500</pubDate>
</item>
<item>
<title>Get name of db class during runtime? in Support : General discussions</title>
<link>http://www.ezpdo.net/forum/viewtopic.php?pid=3222#p3222</link>
<guid isPermaLink="false">3222@http://www.ezpdo.net/forum</guid>
<description>Topic: Get name of db class during runtime?

Message: Okay ... answere:
Code:$dbObject-&#62;getClass()
</description>
<pubDate>Fri, 18 Sep 2009 08:27:52 -0400</pubDate>
</item>
<item>
<title>Get name of db class during runtime? in Support : General discussions</title>
<link>http://www.ezpdo.net/forum/viewtopic.php?pid=3221#p3221</link>
<guid isPermaLink="false">3221@http://www.ezpdo.net/forum</guid>
<description>Topic: Get name of db class during runtime?

Message: See topic. How I can get the name of the class which is used for the table?
</description>
<pubDate>Fri, 18 Sep 2009 08:17:16 -0400</pubDate>
</item>
<item>
<title>is the ezpdo project still maintained? in Support : General discussions</title>
<link>http://www.ezpdo.net/forum/viewtopic.php?pid=3220#p3220</link>
<guid isPermaLink="false">3220@http://www.ezpdo.net/forum</guid>
<description>Topic: is the ezpdo project still maintained?

Message: You might want to look into Doctrine (http://www.doctrine-project.org/).&#160; I haven't tried it yet but version 2, which requires PHP 5.3 and will be out in a couple months, looks very promising.
</description>
<pubDate>Tue, 15 Sep 2009 10:19:57 -0400</pubDate>
</item>
<item>
<title>complex unique constraint with multiple fields in Support : General discussions</title>
<link>http://www.ezpdo.net/forum/viewtopic.php?pid=3218#p3218</link>
<guid isPermaLink="false">3218@http://www.ezpdo.net/forum</guid>
<description>Topic: complex unique constraint with multiple fields

Message: I have resolved:class Book {&#160; /**&#160; * @orm char(16) unique(unq_A)&#160; */&#160; public $isbn;&#160; &#160;/**&#160; &#160;* @orm char(64) unique(unq_A) &#160; &#160;*/&#160; public $title;[....]}
</description>
<pubDate>Tue, 04 Aug 2009 15:47:04 -0400</pubDate>
</item>
<item>
<title>complex unique constraint with multiple fields in Support : General discussions</title>
<link>http://www.ezpdo.net/forum/viewtopic.php?pid=3217#p3217</link>
<guid isPermaLink="false">3217@http://www.ezpdo.net/forum</guid>
<description>Topic: complex unique constraint with multiple fields

Message: Hi allis possible with ezpdo make a complex unique constraint with multiple fields ?I want the is invalid the duplicate for &#34;field1 and field2 and field3&#34;, but no for only one of this or combinations.insert:f1 = af2 = bf3 = c==&#62; OKinsert:f1 = af2 = bf3 = c==&#62; FAILinsert:f1 = af2 = xf3 = c==&#62; OKinsert:f1 = af2 = bf3 = x==&#62; OKthanks
</description>
<pubDate>Tue, 04 Aug 2009 14:37:33 -0400</pubDate>
</item>
<item>
<title>is the ezpdo project still maintained? in Support : General discussions</title>
<link>http://www.ezpdo.net/forum/viewtopic.php?pid=3216#p3216</link>
<guid isPermaLink="false">3216@http://www.ezpdo.net/forum</guid>
<description>Topic: is the ezpdo project still maintained?

Message: thanks for your reply - i'll try to be a more active supporter in the future...
</description>
<pubDate>Wed, 15 Jul 2009 12:13:39 -0400</pubDate>
</item>
<item>
<title>is the ezpdo project still maintained? in Support : General discussions</title>
<link>http://www.ezpdo.net/forum/viewtopic.php?pid=3215#p3215</link>
<guid isPermaLink="false">3215@http://www.ezpdo.net/forum</guid>
<description>Topic: is the ezpdo project still maintained?

Message: Guys, sorry for not showing any life signs in the past few months. We have been tied up with some other projects and have not been able to spend much time on EZPDO. This is partly due to the fact that several projects require a different language than PHP. However, we will try our best to maintain EZPDO. Your ideas for improvements as well as patches are most welcome. As always, thanks for your interest for this project.
</description>
<pubDate>Wed, 15 Jul 2009 12:07:33 -0400</pubDate>
</item>
<item>
<title>is the ezpdo project still maintained? in Support : General discussions</title>
<link>http://www.ezpdo.net/forum/viewtopic.php?pid=2949#p2949</link>
<guid isPermaLink="false">2949@http://www.ezpdo.net/forum</guid>
<description>Topic: is the ezpdo project still maintained?

Message: Just because it is not maintained any more, in several occasions I have looked for another persistence library. I couldn't find one that is so straightforward and easy to use. I think something should be done regarding this and that EZPDO still has a big chance.What are current maintainers saying?
</description>
<pubDate>Sat, 13 Jun 2009 11:17:27 -0400</pubDate>
</item>
<item>
<title>n:n relations in Support : General discussions</title>
<link>http://www.ezpdo.net/forum/viewtopic.php?pid=2947#p2947</link>
<guid isPermaLink="false">2947@http://www.ezpdo.net/forum</guid>
<description>Topic: n:n relations

Message: Hi alltogether,I have a general question: I have two objects Item and Category. There can be serveral Items per Category and an Item can have several different Categories. My queries look all like &#34;from Item where categories.contains(c) AND c.uniqueID = ?&#34;.Now my question: I have a &#34;has many Categories&#34; in my Item-Model. Do I have to add an &#34;has many Item&#34; in mein Category-Object? I do not need this var in the Category-Object... is this value needed for a clean database structure?Thank you!
</description>
<pubDate>Wed, 03 Jun 2009 12:11:35 -0400</pubDate>
</item>
<item>
<title>is the ezpdo project still maintained? in Support : General discussions</title>
<link>http://www.ezpdo.net/forum/viewtopic.php?pid=2945#p2945</link>
<guid isPermaLink="false">2945@http://www.ezpdo.net/forum</guid>
<description>Topic: is the ezpdo project still maintained?

Message: I would also be happy, if there would be any life sign!
</description>
<pubDate>Mon, 25 May 2009 04:56:52 -0400</pubDate>
</item>
</channel>
</rss>
