<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <id>http://groups.google.co.uk/group/doctrine-user</id>
  <title type="text">doctrine-user Google Group</title>
  <subtitle type="text">
  Doctrine User mailing list. For questions regarding installation and usage of doctrine.
  </subtitle>
  <link href="/group/doctrine-user/feed/atom_v1_0_msgs.xml" rel="self" title="doctrine-user feed"/>
  <updated>2009-12-07T15:28:33Z</updated>
  <generator uri="http://groups.google.co.uk" version="1.99">Google Groups</generator>
  <entry>
  <author>
  <name>Nicolas KONDRATEK</name>
  <email>n.kondra...@gmail.com</email>
  </author>
  <updated>2009-12-07T15:28:33Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/37f91dcbc9f08272/641749585c21343b?show_docid=641749585c21343b</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/37f91dcbc9f08272/641749585c21343b?show_docid=641749585c21343b"/>
  <title type="text">Re: Problem with relation...</title>
  <summary type="html" xml:space="preserve">
  Good, all is OK, thanks you !!!
  </summary>
  </entry>
  <entry>
  <author>
  <name>Andreas Möller</name>
  <email>localhe...@l8m.de</email>
  </author>
  <updated>2009-12-07T15:26:16Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/37f91dcbc9f08272/892ccb4098a63755?show_docid=892ccb4098a63755</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/37f91dcbc9f08272/892ccb4098a63755?show_docid=892ccb4098a63755"/>
  <title type="text">Re: [doctrine-user] Problem with relation...</title>
  <summary type="html" xml:space="preserve">
  Hello Nicolas, &lt;br&gt; &lt;p&gt;Fine. &lt;br&gt; &lt;p&gt;Try this: &lt;br&gt; &lt;p&gt; $baseCompetence = new BaseCompetence(); &lt;br&gt; $baseCompetence-&amp;gt;cle = &#39;COMP_1&#39;; &lt;br&gt; $baseCompetence-&amp;gt;diversite = 54; &lt;br&gt; &lt;p&gt; $user-&amp;gt;Competence[] = $baseCompetence;; &lt;br&gt; &lt;p&gt;Best regards, &lt;br&gt; &lt;p&gt;Andreas
  </summary>
  </entry>
  <entry>
  <author>
  <name>Artyom Bisyarin</name>
  <email>arts...@ukr.net</email>
  </author>
  <updated>2009-12-07T15:24:51Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/37f91dcbc9f08272/6afef794ef90e2d3?show_docid=6afef794ef90e2d3</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/37f91dcbc9f08272/6afef794ef90e2d3?show_docid=6afef794ef90e2d3"/>
  <title type="text">Re: Problem with relation...</title>
  <summary type="html" xml:space="preserve">
  Try something as following: &lt;br&gt; $competence = new Competence(); &lt;br&gt; $competence-&amp;gt;cle = &amp;quot;COMP_1&amp;quot;; &lt;br&gt; $competence-&amp;gt;diversite = 54; &lt;br&gt; &lt;p&gt;$user = new User(); &lt;br&gt; $user-&amp;gt;name = &amp;quot;Name&amp;quot;; &lt;br&gt; $user-&amp;gt;mail = &amp;quot;n.kondra...@gmail.com&amp;quot;; &lt;br&gt; $user-&amp;gt;password = &amp;quot;xxxxx&amp;quot;; &lt;br&gt; &lt;p&gt;$user-&amp;gt;Competence[] = $competence; &lt;br&gt; &lt;p&gt;$user-&amp;gt;save();
  </summary>
  </entry>
  <entry>
  <author>
  <name>Reinier Kip</name>
  <email>reinier....@gmail.com</email>
  </author>
  <updated>2009-12-07T15:17:43Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/acad573be7b3e03b/aff5a287ec8ee2f4?show_docid=aff5a287ec8ee2f4</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/acad573be7b3e03b/aff5a287ec8ee2f4?show_docid=aff5a287ec8ee2f4"/>
  <title type="text">Re: [2.0] Inheritance and associations problem</title>
  <summary type="html" xml:space="preserve">
  Very well.
  </summary>
  </entry>
  <entry>
  <author>
  <name>Nicolas KONDRATEK</name>
  <email>n.kondra...@gmail.com</email>
  </author>
  <updated>2009-12-07T15:06:48Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/37f91dcbc9f08272/bf78213f085efdc2?show_docid=bf78213f085efdc2</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/37f91dcbc9f08272/bf78213f085efdc2?show_docid=bf78213f085efdc2"/>
  <title type="text">Problem with relation...</title>
  <summary type="html" xml:space="preserve">
  Hi, &lt;br&gt; &lt;p&gt;I try to save a User with an association : &lt;br&gt; &lt;p&gt;$user = new User(); &lt;br&gt; $user-&amp;gt;name = &amp;quot;Name&amp;quot;; &lt;br&gt; $user-&amp;gt;mail = &amp;quot;n.kondra...@gmail.com&amp;quot;; &lt;br&gt; $user-&amp;gt;password = &amp;quot;xxxxx&amp;quot;; &lt;br&gt; &lt;p&gt;$baseCompetence = $user-&amp;gt;Competence; &lt;br&gt; $user-&amp;gt;Competence[$user-&amp;gt;id]-&amp;gt; cle = &amp;quot;COMP_1&amp;quot;; &lt;br&gt; $user-&amp;gt;Competence[$user-&amp;gt;id]-&amp;gt; diversite = 54;
  </summary>
  </entry>
  <entry>
  <author>
  <name>Artyom Bisyarin</name>
  <email>arts...@ukr.net</email>
  </author>
  <updated>2009-12-07T15:03:27Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/6276dc8759e08953/292a76aea1c64c9d?show_docid=292a76aea1c64c9d</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/6276dc8759e08953/292a76aea1c64c9d?show_docid=292a76aea1c64c9d"/>
  <title type="text">Wrong nodes order when inserting several nodes as last childs of some parent node.</title>
  <summary type="html" xml:space="preserve">
  Hello. &lt;br&gt; When I insert several nodes at once with &amp;quot;$node-&amp;gt;insertAsLastChildOf &lt;br&gt; ($parentNode)&amp;quot;, then nodes inserted in backward order. &lt;br&gt; This is because all nodes inserted with same &#39;lft&#39; and &#39;rgt&#39; values: &lt;br&gt; &lt;p&gt;From MySQL query log: &lt;br&gt; START TRANSACTION &lt;br&gt; UPDATE content_item SET lft = lft + &#39;2&#39; WHERE lft &amp;gt;= &#39;26&#39; AND site_id
  </summary>
  </entry>
  <entry>
  <author>
  <name>Roman Borschel</name>
  <email>r.borsc...@gmx.net</email>
  </author>
  <updated>2009-12-07T14:42:46Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/acad573be7b3e03b/05940b4d16572827?show_docid=05940b4d16572827</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/acad573be7b3e03b/05940b4d16572827?show_docid=05940b4d16572827"/>
  <title type="text">Re: [doctrine-user] Re: [2.0] Inheritance and associations problem</title>
  <summary type="html" xml:space="preserve">
  Hi, &lt;br&gt; &lt;p&gt;OK, thanks for investigating. Can you create a jira issue with that &lt;br&gt; information? I will look into it as soon as I find the time. &lt;br&gt; &lt;p&gt;Thanks! &lt;br&gt; &lt;p&gt;Roman
  </summary>
  </entry>
  <entry>
  <author>
  <name>Reinier Kip</name>
  <email>reinier....@gmail.com</email>
  </author>
  <updated>2009-12-07T14:37:56Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/acad573be7b3e03b/a339815afe92cd01?show_docid=a339815afe92cd01</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/acad573be7b3e03b/a339815afe92cd01?show_docid=a339815afe92cd01"/>
  <title type="text">Re: [2.0] Inheritance and associations problem</title>
  <summary type="html" xml:space="preserve">
  Yes, I&#39;m using trunk. Just to be sure, I updated to the last revision &lt;br&gt; and the problem is still there. &lt;br&gt; There are a few differences between Nico&#39;s case and mine (not sure if &lt;br&gt; they make a difference). &lt;br&gt; &lt;p&gt;1. In my case, AbstractHydrator#_ce contains the base class (i.e. &lt;br&gt; Nico&#39;s AbstractUser, but not abstract) and not the child class.
  </summary>
  </entry>
  <entry>
  <author>
  <name>Nico Kaiser</name>
  <email>n...@kaiser.me</email>
  </author>
  <updated>2009-12-07T14:21:37Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/acad573be7b3e03b/0f968cd857718616?show_docid=0f968cd857718616</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/acad573be7b3e03b/0f968cd857718616?show_docid=0f968cd857718616"/>
  <title type="text">Re: [doctrine-user] [2.0] Inheritance and associations problem</title>
  <summary type="html" xml:space="preserve">
  Which version of Doctrine 2 are you using? This looks like this issue, &lt;br&gt; which seems to be fixed in the current SVN version: &lt;br&gt; &lt;p&gt;&lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://www.doctrine-project.org/jira/browse/DDC-187&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; &lt;p&gt;Nico &lt;br&gt; &lt;p&gt;Am 07.12.2009 15:08 schrieb Reinier Kip:
  </summary>
  </entry>
  <entry>
  <author>
  <name>Roman Borschel</name>
  <email>r.borsc...@gmx.net</email>
  </author>
  <updated>2009-12-07T14:21:33Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/acad573be7b3e03b/a44310980386a03f?show_docid=a44310980386a03f</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/acad573be7b3e03b/a44310980386a03f?show_docid=a44310980386a03f"/>
  <title type="text">Re: [doctrine-user] [2.0] Inheritance and associations problem</title>
  <summary type="html" xml:space="preserve">
  Hi, &lt;br&gt; &lt;p&gt;is this with the latest code from trunk? Because a similar issue has &lt;br&gt; been fixed recently. &lt;br&gt; &lt;p&gt;&lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://www.doctrine-project.org/jira/browse/DDC-187&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; &lt;p&gt;Can you take a look at that and tell me whether there is any relation &lt;br&gt; to your issue? &lt;br&gt; &lt;p&gt;Thanks. &lt;br&gt; &lt;p&gt;Roman
  </summary>
  </entry>
  <entry>
  <author>
  <name>Reinier Kip</name>
  <email>reinier....@gmail.com</email>
  </author>
  <updated>2009-12-07T14:08:33Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/acad573be7b3e03b/663973a3af337843?show_docid=663973a3af337843</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/acad573be7b3e03b/663973a3af337843?show_docid=663973a3af337843"/>
  <title type="text">[2.0] Inheritance and associations problem</title>
  <summary type="html" xml:space="preserve">
  I have two class hierarchies like this: &lt;br&gt; &lt;p&gt;	ParentClass#related = one-to-many RelatedClass &lt;br&gt; ^ &lt;br&gt; ChildClass &lt;br&gt; &lt;p&gt;When I query: &lt;br&gt; &lt;p&gt;	SELECT p, r FROM ParentClass p LEFT JOIN p.related r &lt;br&gt; &lt;p&gt;Where p is an instance of ChildClass, the query fails. It seems &lt;br&gt; ObjectHydrator#_initRelatedCol lection() tries to get metadata for
  </summary>
  </entry>
  <entry>
  <author>
  <name>Ken Marfilla</name>
  <email>marfillas...@gmail.com</email>
  </author>
  <updated>2009-12-07T13:14:13Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/2ab6a7a83a32215f/334128a3a090001c?show_docid=334128a3a090001c</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/2ab6a7a83a32215f/334128a3a090001c?show_docid=334128a3a090001c"/>
  <title type="text">dynamic modification of column name</title>
  <summary type="html" xml:space="preserve">
  Hi, &lt;br&gt; &lt;p&gt;I&#39;m about to export reports from different databases. In essence the &lt;br&gt; tables across the databases are similar except in some cases column &lt;br&gt; names of these tables are different. I thought I just can create a &lt;br&gt; single yaml definition that are common in most database and only &lt;br&gt; change column names during runtime. I tried inheritance but this seems
  </summary>
  </entry>
  <entry>
  <author>
  <name>Reinier Kip</name>
  <email>reinier....@gmail.com</email>
  </author>
  <updated>2009-12-07T12:18:11Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/2629eafb64171b4a/1a38e070a7460f6a?show_docid=1a38e070a7460f6a</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/2629eafb64171b4a/1a38e070a7460f6a?show_docid=1a38e070a7460f6a"/>
  <title type="text">Re: Query problems</title>
  <summary type="html" xml:space="preserve">
  You&#39;re right, I forgot to mention that in my test case I didn&#39;t have &lt;br&gt; an array as the default value (not on purpose). &lt;br&gt; &lt;p&gt;Thanks again!
  </summary>
  </entry>
  <entry>
  <author>
  <name>Christian Fazzini</name>
  <email>christian.fazz...@gmail.com</email>
  </author>
  <updated>2009-12-07T11:46:20Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/c46b5ca23604beb3/7aa0b036187e4d34?show_docid=7aa0b036187e4d34</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/c46b5ca23604beb3/7aa0b036187e4d34?show_docid=7aa0b036187e4d34"/>
  <title type="text">How do I turn these into objects?</title>
  <summary type="html" xml:space="preserve">
  Does anyone know how I can turn the result set into objects? At &lt;br&gt; current, they are returned as arrays. &lt;br&gt; Better still, is there a different query I can use (perhaps in DQL) to &lt;br&gt; get the same results as objects? &lt;br&gt; &lt;p&gt;$this-&amp;gt;feeds = Doctrine_Manager::getInstance( )-&amp;gt;getCurrentConnection &lt;br&gt; ()- &lt;br&gt; &lt;p&gt; SELECT
  </summary>
  </entry>
  <entry>
  <author>
  <name>Diego Potapczuk</name>
  <email>potapc...@gmail.com</email>
  </author>
  <updated>2009-12-07T11:40:56Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/ce7bc930c2049bc8/14803884b634d6c5?show_docid=14803884b634d6c5</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/ce7bc930c2049bc8/14803884b634d6c5?show_docid=14803884b634d6c5"/>
  <title type="text">Re: Fetching relations</title>
  <summary type="html" xml:space="preserve">
  No one to help?
  </summary>
  </entry>
  <entry>
  <author>
  <name>leblos</name>
  <email>tobiasknipp...@web.de</email>
  </author>
  <updated>2009-12-07T11:36:18Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/328b4478f63b8558/bf3110904f6b08f3?show_docid=bf3110904f6b08f3</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/328b4478f63b8558/bf3110904f6b08f3?show_docid=bf3110904f6b08f3"/>
  <title type="text">migrations and multiple connections</title>
  <summary type="html" xml:space="preserve">
  Is there any chance, to use migrations with multiple connections? &lt;br&gt; &lt;p&gt;i am using Doctrine 1.2 with one yaml-File for each Connection &lt;br&gt; specifying &lt;br&gt; connection: public on top of the file. &lt;br&gt; When i am doing migration now, i get an error, because the wrong &lt;br&gt; connection is used an the corresponding tables are not found. even if
  </summary>
  </entry>
  <entry>
  <author>
  <name>Roman Borschel</name>
  <email>r.borsc...@gmx.net</email>
  </author>
  <updated>2009-12-07T11:24:18Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/2629eafb64171b4a/0366120ab3d9814f?show_docid=0366120ab3d9814f</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/2629eafb64171b4a/0366120ab3d9814f?show_docid=0366120ab3d9814f"/>
  <title type="text">Re: [doctrine-user] Re: Query problems</title>
  <summary type="html" xml:space="preserve">
  Hi, &lt;br&gt; &lt;p&gt;I see, but that does not explain why it works when you just switch the &lt;br&gt; metadata driver? &lt;br&gt; &lt;p&gt;You&#39;re right that _initRelatedCollection does not account for arrays. &lt;br&gt; However, this is not really a bug. Collections of entities must be &lt;br&gt; defined in terms of the Doctrine\Common\Collections\Co llection
  </summary>
  </entry>
  <entry>
  <author>
  <name>Solnce</name>
  <email>vansanb...@gmail.com</email>
  </author>
  <updated>2009-12-07T10:57:55Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/ac0232152ef0ae7b/7f1e545b9d0e02c9?show_docid=7f1e545b9d0e02c9</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/ac0232152ef0ae7b/7f1e545b9d0e02c9?show_docid=7f1e545b9d0e02c9"/>
  <title type="text">Re: Base Models not found.</title>
  <summary type="html" xml:space="preserve">
  When I had same problem the solution was to regenerate all models with &lt;br&gt; options like this: &lt;br&gt; &lt;p&gt;$options = array( &lt;br&gt; &#39;pearStyle&#39; =&amp;gt; true, &lt;br&gt; &#39;baseClassPrefix&#39; =&amp;gt; &#39;Base_&#39;, &lt;br&gt; &#39;baseClassesDirectory&#39; =&amp;gt; &#39;&#39;, &lt;br&gt; ); &lt;br&gt; Doctrine_Core::dropDatabases() ; &lt;br&gt; Doctrine_Core::createDatabases (); &lt;br&gt; Doctrine_Core::generateModelsF romYaml(APPPATH . &#39;schema/schema.yml&#39;,
  </summary>
  </entry>
  <entry>
  <author>
  <name>Christian Fazzini</name>
  <email>christian.fazz...@gmail.com</email>
  </author>
  <updated>2009-12-07T10:29:24Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/5232a9a584a014b5/6d712da5d74940aa?show_docid=6d712da5d74940aa</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/5232a9a584a014b5/6d712da5d74940aa?show_docid=6d712da5d74940aa"/>
  <title type="text">Re: Need subquery to return as object instead of array</title>
  <summary type="html" xml:space="preserve">
  Anyone? &lt;br&gt; &lt;p&gt;On Dec 4, 3:22 am, Christian Fazzini &amp;lt;christian.fazz...@gmail.com&amp;gt; &lt;br&gt; wrote:
  </summary>
  </entry>
  <entry>
  <author>
  <name>Reinier Kip</name>
  <email>reinier....@gmail.com</email>
  </author>
  <updated>2009-12-07T10:25:41Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/2629eafb64171b4a/6fb26879f7e7cc34?show_docid=6fb26879f7e7cc34</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/2629eafb64171b4a/6fb26879f7e7cc34?show_docid=6fb26879f7e7cc34"/>
  <title type="text">Re: Query problems</title>
  <summary type="html" xml:space="preserve">
  I removed the default value of &#39;array()&#39; of the property that contains &lt;br&gt; the relation. Is this expected behaviour? If not, this could be a bug &lt;br&gt; in ObjectHydrator#_initRelatedCol lection().
  </summary>
  </entry>
  <entry>
  <author>
  <name>Reinier Kip</name>
  <email>reinier....@gmail.com</email>
  </author>
  <updated>2009-12-07T10:04:47Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/2629eafb64171b4a/a31440722d7cc95e?show_docid=a31440722d7cc95e</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/2629eafb64171b4a/a31440722d7cc95e?show_docid=a31440722d7cc95e"/>
  <title type="text">Re: Query problems</title>
  <summary type="html" xml:space="preserve">
  I followed the execution flow and this is where the first difference &lt;br&gt; occurs. In my case, in ObjectHydrator on line 291... &lt;br&gt; &lt;p&gt;	if (isset($this-&amp;gt;_existingCollect ions[$collKey])) { &lt;br&gt; &lt;p&gt;... it finds an existing collection with key $collKey, after which it &lt;br&gt; unsets the result pointer for my DQL alias (&#39;_1&#39;). In the test case I
  </summary>
  </entry>
  <entry>
  <author>
  <name>Roman Borschel</name>
  <email>r.borsc...@gmx.net</email>
  </author>
  <updated>2009-12-06T12:19:02Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/d95dffcd6c33c9a7/d88d44083ef84041?show_docid=d88d44083ef84041</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/d95dffcd6c33c9a7/d88d44083ef84041?show_docid=d88d44083ef84041"/>
  <title type="text">Re: [doctrine-user] [2.0] Allow @Id on @ManyToOne fields (any hints for implementation?)</title>
  <summary type="html" xml:space="preserve">
  Hi, &lt;br&gt; &lt;p&gt;This is really not easy because its not done by simply adding the join &lt;br&gt; column(s) to the primary key in the schema. Thats the simplest part. &lt;br&gt; The identifier/pk is essential throughout doctrine, so you would need &lt;br&gt; to have a concept of how EntityManager#find(...) or any other operation
  </summary>
  </entry>
  <entry>
  <author>
  <name>Dolly Aswin Harahap</name>
  <email>dolly.as...@gmail.com</email>
  </author>
  <updated>2009-12-06T08:40:22Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/ac0232152ef0ae7b/94c057501bdb7531?show_docid=94c057501bdb7531</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/ac0232152ef0ae7b/94c057501bdb7531?show_docid=94c057501bdb7531"/>
  <title type="text">Re: [doctrine-user] Base Models not found.</title>
  <summary type="html" xml:space="preserve">
  Hi Nicolas, &lt;br&gt; &lt;p&gt;It caused PHP not found BaseCompetence class. &lt;br&gt; Just add generated folder into your include path. &lt;br&gt; &lt;p&gt;// add here &lt;br&gt; set_include_path(get_include_p ath() . PATH_SEPARATOR . GLOBAL_DIR . &lt;br&gt; &#39;/models/generated&#39;); &lt;br&gt; &lt;p&gt;Hope it can help you. &lt;br&gt; &lt;p&gt;Regards &lt;br&gt; &lt;p&gt;-- &lt;br&gt; Dolly Aswin Harahap &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://dollyaswin.net/en&quot;&gt;[link]&lt;/a&gt;
  </summary>
  </entry>
  <entry>
  <author>
  <name>Andreas Möller</name>
  <email>localhe...@l8m.de</email>
  </author>
  <updated>2009-12-05T12:53:21Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/1fc8c48e74c58015/23fc65eae565ab08?show_docid=23fc65eae565ab08</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/1fc8c48e74c58015/23fc65eae565ab08?show_docid=23fc65eae565ab08"/>
  <title type="text">RE: [doctrine-user] Re: All childs have an N:M relation witch each other. Behavior suggestions?</title>
  <summary type="html" xml:space="preserve">
  but the others are similar. &lt;br&gt; &lt;p&gt;Then I would probably go for concrete inheritance and store everything in the same table. &lt;br&gt; &lt;p&gt;So, you have one parent and an undefined, yet growing number of children. Are the the children supposed to have children themselves or just to link to other children, i.e., on the same level in the tree?
  </summary>
  </entry>
  <entry>
  <author>
  <name>alexey_baranov</name>
  <email>mias...@gmail.com</email>
  </author>
  <updated>2009-12-05T06:35:32Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/4b119728985d6e69/a7af166ecf0089d9?show_docid=a7af166ecf0089d9</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/4b119728985d6e69/a7af166ecf0089d9?show_docid=a7af166ecf0089d9"/>
  <title type="text">unidirectional vs bidirectional</title>
  <summary type="html" xml:space="preserve">
  Hello! &lt;br&gt; &lt;p&gt;Is there any advantage of uni-directional over the bi-directional, &lt;br&gt; why they should use?
  </summary>
  </entry>
  <entry>
  <author>
  <name>alexey_baranov</name>
  <email>mias...@gmail.com</email>
  </author>
  <updated>2009-12-05T06:21:03Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/ed55b8af13b50656/0dda3126ef694473?show_docid=0dda3126ef694473</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/ed55b8af13b50656/0dda3126ef694473?show_docid=0dda3126ef694473"/>
  <title type="text">timestamp &lt;---&gt; Zend_Date Doctrine 2 type mapping</title>
  <summary type="html" xml:space="preserve">
  Hello! &lt;br&gt; &lt;p&gt;Has enybody written this type of mapping?
  </summary>
  </entry>
  <entry>
  <author>
  <name>Jorge</name>
  <email>jorge.barata.gonza...@gmail.com</email>
  </author>
  <updated>2009-12-05T03:49:28Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/dfa14de4d4481833/ca4a05c0acc18edc?show_docid=ca4a05c0acc18edc</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/dfa14de4d4481833/ca4a05c0acc18edc?show_docid=ca4a05c0acc18edc"/>
  <title type="text">Re: All childs have an N:M relation witch each other. Behavior suggestions?</title>
  <summary type="html" xml:space="preserve">
  One of them has a LONGTEXT field and another one have a TEXT field, &lt;br&gt; but the others are similar. &lt;br&gt; What I wish is that all children can &amp;quot;link&amp;quot; between them. &lt;br&gt; &lt;p&gt;Thanks! &lt;br&gt; Jorge
  </summary>
  </entry>
  <entry>
  <author>
  <name>Andreas Möller</name>
  <email>localhe...@l8m.de</email>
  </author>
  <updated>2009-12-05T01:13:42Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/dfa14de4d4481833/4449b1171e9fabbe?show_docid=4449b1171e9fabbe</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/dfa14de4d4481833/4449b1171e9fabbe?show_docid=4449b1171e9fabbe"/>
  <title type="text">Re: [doctrine-user] Re: All childs have an N:M relation witch each other. Behavior suggestions?</title>
  <summary type="html" xml:space="preserve">
  Hello Jorge, &lt;br&gt; &lt;p&gt;are the tables (i.e., the classes or types of records you &lt;br&gt; want to store) very different in terms of their structure? &lt;br&gt; &lt;p&gt;Best regards, &lt;br&gt; &lt;p&gt;Andreas
  </summary>
  </entry>
  <entry>
  <author>
  <name>Andreas Möller</name>
  <email>localhe...@l8m.de</email>
  </author>
  <updated>2009-12-05T01:10:58Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/dfa14de4d4481833/9db7b62831d4c8f6?show_docid=9db7b62831d4c8f6</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/dfa14de4d4481833/9db7b62831d4c8f6?show_docid=9db7b62831d4c8f6"/>
  <title type="text">Re: [doctrine-user] Re: All childs have an N:M relation witch each other. Behavior suggestions?</title>
  <summary type="html" xml:space="preserve">
  </summary>
  </entry>
  <entry>
  <author>
  <name>Jorge</name>
  <email>jorge.barata.gonza...@gmail.com</email>
  </author>
  <updated>2009-12-05T00:22:39Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/dfa14de4d4481833/5af621780f7abf75?show_docid=5af621780f7abf75</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/dfa14de4d4481833/5af621780f7abf75?show_docid=5af621780f7abf75"/>
  <title type="text">Re: All childs have an N:M relation witch each other. Behavior suggestions?</title>
  <summary type="html" xml:space="preserve">
  Thanks Andreas. &lt;br&gt; &lt;p&gt;I&#39;m Spanish and I think you misunderstood my dirty English. What I &lt;br&gt; want is something like this: &lt;br&gt; &lt;p&gt;--- &lt;br&gt; ParentTable &lt;br&gt; &lt;p&gt;ATable &lt;br&gt; BTable &lt;br&gt; CTable &lt;br&gt; &lt;p&gt;ATable_BTable &lt;br&gt; BTable_CTable &lt;br&gt; CTable_Ctable &lt;br&gt; --- &lt;br&gt; &lt;p&gt;ParentTable is the parent table, A-B-C-Tables are the childs and &lt;br&gt; ATable_BTable... are the N:M relations for the childs.
  </summary>
  </entry>
  <entry>
  <author>
  <name>Andreas Möller</name>
  <email>localhe...@l8m.de</email>
  </author>
  <updated>2009-12-04T21:44:12Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/dfa14de4d4481833/0e324c9bfea347af?show_docid=0e324c9bfea347af</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/dfa14de4d4481833/0e324c9bfea347af?show_docid=0e324c9bfea347af"/>
  <title type="text">Re: [doctrine-user] All childs have an N:M relation witch each other. Behavior suggestions?</title>
  <summary type="html" xml:space="preserve">
  You are talking about a forest of n-ary trees, right? &lt;br&gt; &lt;p&gt;The behaviour, or template would then in its most simple &lt;br&gt; consist of the data structure to represent an n-ary tree. &lt;br&gt; &lt;p&gt;Have a look at &lt;br&gt; &lt;p&gt; [x] Thomas H. Cormen et al 1990. Introduction to &lt;br&gt; Algorithms, MIT Press, Cambridge. &lt;br&gt; &lt;p&gt;Best regards,
  </summary>
  </entry>
  <entry>
  <author>
  <name>Jorge</name>
  <email>jorge.barata.gonza...@gmail.com</email>
  </author>
  <updated>2009-12-04T21:10:39Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/dfa14de4d4481833/51d921fbf63540a1?show_docid=51d921fbf63540a1</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/dfa14de4d4481833/51d921fbf63540a1?show_docid=51d921fbf63540a1"/>
  <title type="text">All childs have an N:M relation witch each other. Behavior suggestions?</title>
  <summary type="html" xml:space="preserve">
  Hi all! &lt;br&gt; &lt;p&gt;I am designing a database with these attributes: &lt;br&gt; &lt;p&gt;	Hierachical structure: one parent and X childs. &lt;br&gt; All childs have an N:M relation witch each other. &lt;br&gt; It is possible that more children are added in the future. &lt;br&gt; &lt;p&gt;I have thought in implement the hierachical structure as &amp;quot;Concrete&amp;quot; &lt;br&gt; and the N:M relations with a behavior, but I don&#39;t know how to
  </summary>
  </entry>
  <entry>
  <author>
  <name>Andreas Möller</name>
  <email>localhe...@l8m.de</email>
  </author>
  <updated>2009-12-04T18:09:13Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/1217b5f6a8bb6d58/516c6d747e723d3f?show_docid=516c6d747e723d3f</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/1217b5f6a8bb6d58/516c6d747e723d3f?show_docid=516c6d747e723d3f"/>
  <title type="text">Re: [doctrine-user] Re: modelsAutoload</title>
  <summary type="html" xml:space="preserve">
  Other means would be possible, too, especially when implementing with &lt;br&gt; Zend Framework, using PEAR style model generation options and the Zend &lt;br&gt; Autoloader. &lt;br&gt; &lt;p&gt;Best regards, &lt;br&gt; &lt;p&gt;Andreas
  </summary>
  </entry>
  <entry>
  <author>
  <name>dp316</name>
  <email>doug...@gmail.com</email>
  </author>
  <updated>2009-12-04T18:05:29Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/1217b5f6a8bb6d58/087392729c86991e?show_docid=087392729c86991e</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/1217b5f6a8bb6d58/087392729c86991e?show_docid=087392729c86991e"/>
  <title type="text">Re: modelsAutoload</title>
  <summary type="html" xml:space="preserve">
  Seems pretty clear from the code (1.2) that: &lt;br&gt; &lt;p&gt;	spl_autoload_register(array(&#39;D octrine&#39;, &#39;modelsAutoload&#39;)); &lt;br&gt; &lt;p&gt;in required to load non-Doctrine (but Doctrine-derived) models.
  </summary>
  </entry>
  <entry>
  <author>
  <name>Marco Baumgartl</name>
  <email>baumga...@boerse-go.de</email>
  </author>
  <updated>2009-12-04T15:56:31Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/de835b170672ebeb/b4c1bc62402bb81c?show_docid=b4c1bc62402bb81c</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/de835b170672ebeb/b4c1bc62402bb81c?show_docid=b4c1bc62402bb81c"/>
  <title type="text">[2.0] Incomplete documentation?</title>
  <summary type="html" xml:space="preserve">
  Hi, &lt;br&gt; &lt;p&gt;I use many-to-many self-referencing associations in my current project. &lt;br&gt; &lt;p&gt;Using the example from the documentation results in an exception: &lt;br&gt; &lt;p&gt;&amp;quot;The mapping of field &#39;&#39; is invalid.&amp;quot; &lt;br&gt; &lt;p&gt;I think the error is caused by a missing annotation attribute (mappedBy) &lt;br&gt; on the inverse side ($friendsWithMe).
  </summary>
  </entry>
  <entry>
  <author>
  <name>Roman Borschel</name>
  <email>r.borsc...@gmx.net</email>
  </author>
  <updated>2009-12-04T13:35:11Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/2629eafb64171b4a/86a92c639a16a71c?show_docid=86a92c639a16a71c</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/2629eafb64171b4a/86a92c639a16a71c?show_docid=86a92c639a16a71c"/>
  <title type="text">Re: [doctrine-user] Re: Query problems</title>
  <summary type="html" xml:space="preserve">
  I cant see anything particularly wrong there but its hard to tell. &lt;br&gt; &lt;p&gt;Can you show your mapping driver? Otherwise its hard to guess what the &lt;br&gt; problem is. Obviously its something with associations but that could &lt;br&gt; be many things. &lt;br&gt; &lt;p&gt;Let me know when you find out something new or when you think I can
  </summary>
  </entry>
  <entry>
  <author>
  <name>Reinier Kip</name>
  <email>reinier....@gmail.com</email>
  </author>
  <updated>2009-12-04T13:18:31Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/2629eafb64171b4a/2d26ac808b91afb9?show_docid=2d26ac808b91afb9</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/2629eafb64171b4a/2d26ac808b91afb9?show_docid=2d26ac808b91afb9"/>
  <title type="text">Re: Query problems</title>
  <summary type="html" xml:space="preserve">
  I tested the query with the AnnotationDriver and it worked fine. So I &lt;br&gt; figured something was wrong with my mapping driver. I compared the two &lt;br&gt; but could not find any differences. I have put the ClassMetadata on &lt;br&gt; pastebin. Does anyone see anything wrong? &lt;br&gt; &lt;p&gt;&lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://pastebin.com/m35f29666&quot;&gt;[link]&lt;/a&gt;
  </summary>
  </entry>
  <entry>
  <author>
  <name>Diego Potapczuk</name>
  <email>potapc...@gmail.com</email>
  </author>
  <updated>2009-12-04T12:47:44Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/ce7bc930c2049bc8/9b86295ae406d002?show_docid=9b86295ae406d002</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/ce7bc930c2049bc8/9b86295ae406d002?show_docid=9b86295ae406d002"/>
  <title type="text">Fetching relations</title>
  <summary type="html" xml:space="preserve">
  There is something really strange here, i´m trying to get my users &lt;br&gt; with some relations included, but it only works when i use fetchOne, &lt;br&gt; not when i use execute. Here is what i´m doing: &lt;br&gt; &lt;p&gt;WORKING EXAMPLE: &lt;br&gt; &lt;p&gt;	$q = Doctrine_Query::create(); &lt;br&gt; $q-&amp;gt;from(&#39;Usuario u&#39;) &lt;br&gt; -&amp;gt;leftJoin(&#39;u.municipio m&#39;);
  </summary>
  </entry>
  <entry>
  <author>
  <name>Nicolas KONDRATEK</name>
  <email>n.kondra...@gmail.com</email>
  </author>
  <updated>2009-12-03T22:46:48Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/ac0232152ef0ae7b/7c8d68bdd73cb3c3?show_docid=7c8d68bdd73cb3c3</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/ac0232152ef0ae7b/7c8d68bdd73cb3c3?show_docid=7c8d68bdd73cb3c3"/>
  <title type="text">Base Models not found.</title>
  <summary type="html" xml:space="preserve">
  Hi, &lt;br&gt; &lt;p&gt;I&#39;ve a problem, message is : &lt;br&gt; Fatal error: Class &#39;BaseCompetence&#39; not found in /Applications/MAMP/ &lt;br&gt; htdocs/MyProject/models/Compet ence.php on line 13 &lt;br&gt; &lt;p&gt;Competence is in /Applications/MAMP/htdocs/MyPr oject/models and &lt;br&gt; BaseCompetence in /Applications/MAMP/htdocs/MyPr oject/models/ &lt;br&gt; generated. &lt;br&gt; (BaseCompetence and Competence are generate with
  </summary>
  </entry>
  <entry>
  <author>
  <name>Andres Lartigue Debian</name>
  <email>alarti...@binova.com.ar</email>
  </author>
  <updated>2009-12-03T22:10:09Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/4b67785adb839586/c56424d3f92773c1?show_docid=c56424d3f92773c1</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/4b67785adb839586/c56424d3f92773c1?show_docid=c56424d3f92773c1"/>
  <title type="text">Re: [doctrine-user] BIT(1) help</title>
  <summary type="html" xml:space="preserve">
  Hi, &lt;br&gt; Try using boolean on your YML and TinyInt on your DB. &lt;br&gt; &lt;p&gt;Greetings &lt;br&gt; &lt;p&gt;Andrés &lt;br&gt; &lt;p&gt;2009/12/3 amwca &amp;lt;christ...@activemediaworks.co m&amp;gt;
  </summary>
  </entry>
  <entry>
  <author>
  <name>amwca</name>
  <email>christ...@activemediaworks.com</email>
  </author>
  <updated>2009-12-03T21:20:44Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/4b67785adb839586/28f5b25f5fae1046?show_docid=28f5b25f5fae1046</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/4b67785adb839586/28f5b25f5fae1046?show_docid=28f5b25f5fae1046"/>
  <title type="text">BIT(1) help</title>
  <summary type="html" xml:space="preserve">
  I&#39;m using Doctrine with Symfony. &lt;br&gt; &lt;p&gt;I have a MySQL database with a column of type BIT(1) &lt;br&gt; &lt;p&gt;I can&#39;t seem to save to the database because the validation fails on &lt;br&gt; type. &lt;br&gt; &lt;p&gt;I&#39;ve tried passing in 0/1, false/true, and even chr(0) and chr(1) to &lt;br&gt; see if it makes a difference, and it still doesn&#39;t work for me.
  </summary>
  </entry>
  <entry>
  <author>
  <name>Sigma</name>
  <email>sigm...@web.de</email>
  </author>
  <updated>2009-12-03T21:01:44Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/8835d4e5cc681d68/6adf3fc4355b24dc?show_docid=6adf3fc4355b24dc</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/8835d4e5cc681d68/6adf3fc4355b24dc?show_docid=6adf3fc4355b24dc"/>
  <title type="text">problem with query hydration with may has one relations</title>
  <summary type="html" xml:space="preserve">
  Hi doctrine users. &lt;br&gt; &lt;p&gt;I have a problem with a left joining query. relations with a may has &lt;br&gt; one relation does not hydrates null objects. I though that &lt;br&gt; Doctrine_Null or a false would be set after hydration. The problem is &lt;br&gt; that doctrine queries not hydrated objects again, when iterating over &lt;br&gt; the result set.
  </summary>
  </entry>
  <entry>
  <author>
  <name>Christian Fazzini</name>
  <email>christian.fazz...@gmail.com</email>
  </author>
  <updated>2009-12-03T19:22:19Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/5232a9a584a014b5/7da5ccaed6205515?show_docid=7da5ccaed6205515</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/5232a9a584a014b5/7da5ccaed6205515?show_docid=7da5ccaed6205515"/>
  <title type="text">Re: Need subquery to return as object instead of array</title>
  <summary type="html" xml:space="preserve">
  I also think the real problem is this. Doctrine does not allow us to &lt;br&gt; do a -&amp;gt;from(..subquery here..). For example, the code below. &lt;br&gt; -&amp;gt;from() expects a valid class and nothing else... Or am I wrong? &lt;br&gt; &lt;p&gt; $q1 = $this-&amp;gt;createQuery() &lt;br&gt; -&amp;gt;from(&#39; &lt;br&gt; FROM &lt;br&gt; (SELECT &lt;br&gt; \&#39;videocomment\&#39; as user_action,
  </summary>
  </entry>
  <entry>
  <author>
  <name>Tarjei Huse</name>
  <email>tar...@scanmine.com</email>
  </author>
  <updated>2009-12-03T19:10:47Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/e0737ee9cd60b0ce/1a896392f10676c1?show_docid=1a896392f10676c1</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/e0737ee9cd60b0ce/1a896392f10676c1?show_docid=1a896392f10676c1"/>
  <title type="text">Insert fixtures with given ids</title>
  <summary type="html" xml:space="preserve">
  Hi, is there a way to insert a set of fixtures with given ids? &lt;br&gt; &lt;p&gt;I have a dataset that contains natural numeric keys and I do not want to &lt;br&gt; have extra ids as well. &lt;br&gt; &lt;p&gt;One way I&#39;ve considered is just to load this as sql files directly but I &lt;br&gt; cannot get that working with sqllite for testing. &lt;br&gt; What I&#39;ve tried is:
  </summary>
  </entry>
  <entry>
  <author>
  <name>Christian Fazzini</name>
  <email>christian.fazz...@gmail.com</email>
  </author>
  <updated>2009-12-03T19:00:18Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/5232a9a584a014b5/8839653c98bd5d4c?show_docid=8839653c98bd5d4c</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/5232a9a584a014b5/8839653c98bd5d4c?show_docid=8839653c98bd5d4c"/>
  <title type="text">Re: Need subquery to return as object instead of array</title>
  <summary type="html" xml:space="preserve">
  Ive also tried the following with funny errors. &lt;br&gt; &lt;p&gt; $q1 = $this-&amp;gt;createQuery() &lt;br&gt; -&amp;gt;addSelect(&#39; &lt;br&gt; FROM &lt;br&gt; (SELECT &lt;br&gt; \&#39;videocomment\&#39; as user_action, &lt;br&gt; null as artist_id, user_id, null as song_id, video_id, &lt;br&gt; null as event_id, null as ip_address, null as is_going,
  </summary>
  </entry>
  <entry>
  <author>
  <name>Jonathan Wage</name>
  <email>jonw...@gmail.com</email>
  </author>
  <updated>2009-12-03T18:10:15Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/1217b5f6a8bb6d58/abba2571c21dcd94?show_docid=abba2571c21dcd94</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/1217b5f6a8bb6d58/abba2571c21dcd94?show_docid=abba2571c21dcd94"/>
  <title type="text">Re: [doctrine-user] modelsAutoload</title>
  <summary type="html" xml:space="preserve">
  I will update the 1.2 upgrade documentation to include this information. &lt;br&gt; &lt;p&gt;Thanks, Jon &lt;br&gt; &lt;p&gt;-- &lt;br&gt; Jonathan H. Wage (+1 415 992 5468) &lt;br&gt; Open Source Software Developer &amp;amp; Evangelist &lt;br&gt; sensiolabs.com | jwage.com | doctrine-project.org | symfony-project.org &lt;br&gt; &lt;p&gt;You should follow me on Twitter: &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://www.twitter.com/jwage&quot;&gt;[link]&lt;/a&gt;
  </summary>
  </entry>
  <entry>
  <author>
  <name>Christian Fazzini</name>
  <email>christian.fazz...@gmail.com</email>
  </author>
  <updated>2009-12-03T17:27:19Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/5232a9a584a014b5/10395325c270200b?show_docid=10395325c270200b</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/5232a9a584a014b5/10395325c270200b?show_docid=10395325c270200b"/>
  <title type="text">Re: Need subquery to return as object instead of array</title>
  <summary type="html" xml:space="preserve">
  I tried the following, but I get the error cannon find class v1. It &lt;br&gt; seems like doctrine is not noticing the newly declared alias in &lt;br&gt; addSelect(): &lt;br&gt; &lt;p&gt; $q = $this-&amp;gt;createQuery() &lt;br&gt; -&amp;gt;select(&#39; &lt;br&gt; u.id, &lt;br&gt; v1.user_action, v1.artist_id, v1.user_id, v1.video_id &lt;br&gt; v.title as video_title, v.description as video_description,
  </summary>
  </entry>
  <entry>
  <author>
  <name>Christian Fazzini</name>
  <email>christian.fazz...@gmail.com</email>
  </author>
  <updated>2009-12-03T17:16:38Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/5232a9a584a014b5/d66f3f9f1d9f5a41?show_docid=d66f3f9f1d9f5a41</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/5232a9a584a014b5/d66f3f9f1d9f5a41?show_docid=d66f3f9f1d9f5a41"/>
  <title type="text">Need subquery to return as object instead of array</title>
  <summary type="html" xml:space="preserve">
  fetchAll() currently returns all results in an array. &lt;br&gt; &lt;p&gt;Is there a way to have the same results returned in an object? I tried &lt;br&gt; using subqueries, but have failed numerous times. Does anyone know the &lt;br&gt; proper DQL for this? &lt;br&gt; &lt;p&gt;$this-&amp;gt;feeds = Doctrine_Manager::getInstance( )-&amp;gt;getCurrentConnection()- &lt;br&gt; &lt;p&gt; SELECT
  </summary>
  </entry>
  <entry>
  <author>
  <name>Andreas Möller</name>
  <email>localhe...@l8m.de</email>
  </author>
  <updated>2009-12-03T17:05:52Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/db5f2434fd09af6b/a90788fbf6a04a64?show_docid=a90788fbf6a04a64</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/db5f2434fd09af6b/a90788fbf6a04a64?show_docid=a90788fbf6a04a64"/>
  <title type="text">Re: [doctrine-user] whats the method to create tables using YAML files in Doctrine</title>
  <summary type="html" xml:space="preserve">
  Sorry, I was going to suggest &lt;br&gt; &lt;p&gt; [x] &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://www.doctrine-project.org/documentation&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; &lt;p&gt;then &lt;br&gt; &lt;p&gt; [x] &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://www.google.com&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; &lt;p&gt;and then &lt;br&gt; &lt;p&gt; [x] &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://groups.google.com/group/doctrine-user?lnk=srg&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; &lt;p&gt;where for most of the questions one will find an answer, or post it. &lt;br&gt; &lt;p&gt;Best regards, &lt;br&gt; &lt;p&gt;Andreas
  </summary>
  </entry>
  <entry>
  <author>
  <name>Andreas Möller</name>
  <email>localhe...@l8m.de</email>
  </author>
  <updated>2009-12-03T17:01:47Z</updated>
  <id>http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/db5f2434fd09af6b/8d070d99c17e4cde?show_docid=8d070d99c17e4cde</id>
  <link href="http://groups.google.co.uk/group/doctrine-user/browse_frm/thread/db5f2434fd09af6b/8d070d99c17e4cde?show_docid=8d070d99c17e4cde"/>
  <title type="text">Re: [doctrine-user] whats the method to create tables using YAML files in Doctrine</title>
  <summary type="html" xml:space="preserve">
  First place to look for questions would be &lt;br&gt; &lt;p&gt; Doctrine_Core::createTablesFro mModels($modelsPath); &lt;br&gt; Doctrine_Core::generateModelsF romYaml($yamlPath, $modelsPath., $options); &lt;br&gt; &lt;p&gt;I suggest you look up the proper documentation for the version of &lt;br&gt; Doctrine you are using. Have a look at &lt;br&gt; &lt;p&gt; [x] &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://www.doctrine-project.org/documentation&quot;&gt;[link]&lt;/a&gt;
  </summary>
  </entry>
</feed>
