<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Zendcasts Forum / ZC42 – Deep Integration between Zend and Doctrine 1.2]]></title>
		<link>http://www.zendcasts.com/forum/viewtopic.php?id=126</link>
		<description><![CDATA[The most recent posts in ZC42 – Deep Integration between Zend and Doctrine 1.2.]]></description>
		<lastBuildDate>Mon, 25 Oct 2010 09:43:53 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: ZC42 – Deep Integration between Zend and Doctrine 1.2]]></title>
			<link>http://www.zendcasts.com/forum/viewtopic.php?pid=1131#p1131</link>
			<description><![CDATA[<p>i&#039;ve tried that already it seems it does work too well with either ZF 1.10.8 or something is wrong with my environment.If i can remember very well the error was &quot;cannot redeclare class path&quot;. a fix on the net was suggesting we comment out &quot;includePaths.library&quot; part of the application.ini. after that i got some other error so i just wanted a new a simpler solution.</p><p>Aside i wanted to see whether having every model in the library folder can be a temporal work around to Jon&#039;s approach towards its non module integration support.</p><p>As much as i don&#039;t like hacking libraries for fit my needs, in the i think i also lack time and maybe proper knowledge to start doing what Jon suggested to me on this issue.<br />Thank you all for responding</p>]]></description>
			<author><![CDATA[dummy@example.com (highjo)]]></author>
			<pubDate>Mon, 25 Oct 2010 09:43:53 +0000</pubDate>
			<guid>http://www.zendcasts.com/forum/viewtopic.php?pid=1131#p1131</guid>
		</item>
		<item>
			<title><![CDATA[Re: ZC42 – Deep Integration between Zend and Doctrine 1.2]]></title>
			<link>http://www.zendcasts.com/forum/viewtopic.php?pid=1130#p1130</link>
			<description><![CDATA[<p>For those using modules.</p><p><a href="http://github.com/beberlei/zf-doctrine">http://github.com/beberlei/zf-doctrine</a></p>]]></description>
			<author><![CDATA[dummy@example.com (jh)]]></author>
			<pubDate>Mon, 25 Oct 2010 09:27:04 +0000</pubDate>
			<guid>http://www.zendcasts.com/forum/viewtopic.php?pid=1130#p1130</guid>
		</item>
		<item>
			<title><![CDATA[Re: ZC42 – Deep Integration between Zend and Doctrine 1.2]]></title>
			<link>http://www.zendcasts.com/forum/viewtopic.php?pid=1108#p1108</link>
			<description><![CDATA[<p>Hi Highjo, it sounds like the command-line tool isn&#039;t reaching the models for whatever reason. By moving the models to library folder, I imagine you&#039;re going to need to modify the doctrine command-line script in order for it to find the path to the Doctrine models. Hope that helps,<br />-<br />Jon</p>]]></description>
			<author><![CDATA[dummy@example.com (Jon Lebensold)]]></author>
			<pubDate>Wed, 20 Oct 2010 08:13:09 +0000</pubDate>
			<guid>http://www.zendcasts.com/forum/viewtopic.php?pid=1108#p1108</guid>
		</item>
		<item>
			<title><![CDATA[Re: ZC42 – Deep Integration between Zend and Doctrine 1.2]]></title>
			<link>http://www.zendcasts.com/forum/viewtopic.php?pid=1098#p1098</link>
			<description><![CDATA[<p>Hello Jon !<br />wonderful cast.it has really helped me understood how to integrate with doctrine and after watching it for the first time.I&#039;m using ZF 1.10.8 anjd doctrine 1.2.2 and the book that introduces me to ZF is &quot;Zend Framework a beginner&#039;s guide&quot; by Vikram Vaswani, and in there there are using modules with a single model directory in library.<br />i&#039;ve tried to mimic that way using knowledge from this podcast but i run into some errors.OK not errors per se just that tables aren&#039;t created in the db even though it says so and there is also and error saying couldn&#039;t find &quot;Model_User&quot;.</p><br /><br /><br /><div class="quotebox"><blockquote><div><p>G:\php_document\zendworkspace\testproject\application\scripts&gt;php doctrine build-all-reload<br />build-all-reload - Are you sure you wish to drop your databases? (y/n)<br />y<br />build-all-reload - Successfully dropped database for connection named &#039;doctrine&#039;<br />build-all-reload - Generated models successfully from YAML schema<br />build-all-reload - Successfully created database for connection named &#039;doctrine&#039;<br />build-all-reload - Created tables successfully<br />Couldn&#039;t find class Model_User</p></div></blockquote></div><br /><p>I&#039;ve of course changed application.ini and boostrap to suit my need.maybe i did it wrong.</p><p>application.ini<br /></p><div class="codebox"><pre class="vscroll"><code>appnamespace = &quot;Square_&quot;
resources.frontController.controllerDirectory = APPLICATION_PATH &quot;/controllers&quot;
resources.frontController.params.displayExceptions = 0
autoloadernamespaces[] = &quot;Doctrine&quot;
autoloadernamespaces[] = &quot;Square_&quot;


; ---
; Database
; --

doctrine.dsn = &quot;mysql://root::mypass@localhost/doctest&quot;
doctrine.data_fixtures_path = APPLICATION_PATH &quot;/configs/data/fixtures&quot;
doctrine.sql_path           = APPLICATION_PATH &quot;/configs/data/sql&quot;
doctrine.migrations_path    = APPLICATION_PATH &quot;/configs/migrations&quot;
doctrine.yaml_schema_path   = APPLICATION_PATH &quot;/configs/schema.yml&quot;
doctrine.models_path        = APPLICATION_PATH &quot;/../library/Square/Model&quot;
;;doctrine.models_path        = APPLICATION_PATH &quot;/models&quot;



;;doctrine.generate_models_options.pearStyle = true
doctrine.generate_models_options.generateTableClasses = false
doctrine.generate_models_options.generateBaseClasses = true
doctrine.generate_models_options.baseClassPrefix = &quot;Base&quot;
doctrine.generate_models_options.baseClassesDirectory =
doctrine.generate_models_options.classPrefixFiles = false
doctrine.generate_models_options.classPrefix = &quot;Square_Model_&quot;</code></pre></div><p>bootstrap.php<br /></p><div class="codebox"><pre><code>protected function _initDoctrine()
    {
        $this-&gt;getApplication()-&gt;getAutoloader()
            -&gt;pushAutoloader(array(&#039;Doctrine&#039;, &#039;autoload&#039;));
//        spl_autoload_register(array(&#039;Doctrine&#039;, &#039;modelsAutoload&#039;));
        
        $doctrineConfig = $this-&gt;getOption(&#039;doctrine&#039;);
        $manager = Doctrine_Manager::getInstance();
        $manager-&gt;setAttribute(Doctrine_Core::ATTR_AUTO_ACCESSOR_OVERRIDE, true);
        $manager-&gt;setAttribute(
          Doctrine_Core::ATTR_MODEL_LOADING,
          $doctrineConfig[&#039;model_autoloading&#039;]
        );

//        Doctrine_Core::loadModels($doctrineConfig[&#039;models_path&#039;]);

        $conn = Doctrine_Manager::connection($doctrineConfig[&#039;dsn&#039;],&#039;doctrine&#039;);
        $conn-&gt;setAttribute(Doctrine_Core::ATTR_USE_NATIVE_ENUM, true);
     return $conn;
    }</code></pre></div><br /><p>if you&#039;ve noticed i&#039;ve commented out the registering of modelsAutoload bit, and loadModels bit. in the book i think the idea was to create a folder named&#160; &quot;Square&quot; in library and have all model classes and base classes in its model subfolder, say all models stuffs will be under Square/Model and will have the prefix Square_Model_ and Square_Model_Base for base classes.</p><p>with <br /></p><div class="quotebox"><blockquote><div><p>autoloadernamespaces[] = &quot;Square_&quot;</p></div></blockquote></div><p>in the application.ini it just load fine.just that right now tables are created and maybe it&#039;s expecting the model to have only Model_ prefix.</p><p>MY question is to you all expert, how can i have tables created in the database.thanks for reading this.and thanks in advance to all for your contribution</p>]]></description>
			<author><![CDATA[dummy@example.com (highjo)]]></author>
			<pubDate>Sat, 16 Oct 2010 11:23:14 +0000</pubDate>
			<guid>http://www.zendcasts.com/forum/viewtopic.php?pid=1098#p1098</guid>
		</item>
		<item>
			<title><![CDATA[Re: ZC42 – Deep Integration between Zend and Doctrine 1.2]]></title>
			<link>http://www.zendcasts.com/forum/viewtopic.php?pid=1079#p1079</link>
			<description><![CDATA[<p>i had an <br />fatal error : class &#039;model_base_tablename&#039; not found in &#039;model_tablename&#039; on line 14 </p><p>but when i change starting with aktivite to kaktivite problem goes away :S</p>]]></description>
			<author><![CDATA[dummy@example.com (tribesman)]]></author>
			<pubDate>Sun, 26 Sep 2010 12:21:00 +0000</pubDate>
			<guid>http://www.zendcasts.com/forum/viewtopic.php?pid=1079#p1079</guid>
		</item>
		<item>
			<title><![CDATA[Re: ZC42 – Deep Integration between Zend and Doctrine 1.2]]></title>
			<link>http://www.zendcasts.com/forum/viewtopic.php?pid=1078#p1078</link>
			<description><![CDATA[<p>there are a few &#039;reserved words&#039; in mysql, normaly you could still use them using backticks (if im correct, doctrine made me lazy). but i doubt aktivite is one of them. Maybe if you post the error...</p>]]></description>
			<author><![CDATA[dummy@example.com (iiTyr)]]></author>
			<pubDate>Sun, 26 Sep 2010 09:30:47 +0000</pubDate>
			<guid>http://www.zendcasts.com/forum/viewtopic.php?pid=1078#p1078</guid>
		</item>
		<item>
			<title><![CDATA[Re: ZC42 – Deep Integration between Zend and Doctrine 1.2]]></title>
			<link>http://www.zendcasts.com/forum/viewtopic.php?pid=1077#p1077</link>
			<description><![CDATA[<p>another strange error :S<br />i have tables, names started with aktivite... and it looks like doctrine doesnt like aktivite when i change model class names to kaktivite and related table class names problem gone :S <br />is it aktivite a special word in doctrine ?</p>]]></description>
			<author><![CDATA[dummy@example.com (tribesman)]]></author>
			<pubDate>Sat, 25 Sep 2010 23:16:27 +0000</pubDate>
			<guid>http://www.zendcasts.com/forum/viewtopic.php?pid=1077#p1077</guid>
		</item>
		<item>
			<title><![CDATA[Re: ZC42 – Deep Integration between Zend and Doctrine 1.2]]></title>
			<link>http://www.zendcasts.com/forum/viewtopic.php?pid=1076#p1076</link>
			<description><![CDATA[<p>doctrine version 1.2.3<br />zf version 1.10.8<br />i have some error about class not found. i try many code but i didnt realize why it generate that error. i use xml format configuration and i copy this tutorials code, it works smootly.same code as yours and same version of doctrine both (last version 1.2.3). when i try to load at your schema.yml it works great but when i try to put my schema.yml(this files generated from db via doctrinecli) doctrine didnt create tables, it gives successfull message. when i generate models from db or yaml it doesnt matter doctrine cli starts giving fatal error class not found<br />I can use models created via db in zend and getting results but i cant use relational save or get. Same yaml file generated from db i can create db but cant create new tables.<br />if anything wrong in yaml file why it gives error generate models via db :S<br />i have unique multiplecolumns 2 or 3 tables did this make that error?<br />if i wrote yaml file i think about some wrong writing but it generates from db :S i am really confused</p>]]></description>
			<author><![CDATA[dummy@example.com (tribesman)]]></author>
			<pubDate>Sat, 25 Sep 2010 21:39:14 +0000</pubDate>
			<guid>http://www.zendcasts.com/forum/viewtopic.php?pid=1076#p1076</guid>
		</item>
		<item>
			<title><![CDATA[Re: ZC42 – Deep Integration between Zend and Doctrine 1.2]]></title>
			<link>http://www.zendcasts.com/forum/viewtopic.php?pid=1067#p1067</link>
			<description><![CDATA[<p>at least i understand why it gives errors like that in ini format zend_config gets true to 1 false to null but in xml format it returns true or false and doctrine cant understand true or false values. i chance my xml file to doctrine config values trues are 1 and false&#039;s are blank. the error gone it works smootly</p>]]></description>
			<author><![CDATA[dummy@example.com (tribesman)]]></author>
			<pubDate>Thu, 16 Sep 2010 11:41:17 +0000</pubDate>
			<guid>http://www.zendcasts.com/forum/viewtopic.php?pid=1067#p1067</guid>
		</item>
		<item>
			<title><![CDATA[Re: ZC42 – Deep Integration between Zend and Doctrine 1.2]]></title>
			<link>http://www.zendcasts.com/forum/viewtopic.php?pid=1064#p1064</link>
			<description><![CDATA[<p>i guess your xml is missing some nodes which Zend_Config is expecting (a root node and the nodes for different app environments).<br />an example xml which is working for me:<br /></p><div class="codebox"><pre><code>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
&lt;configuration&gt;
    &lt;production&gt;
        &lt;autoloaderNamespaces&gt;
            &lt;ZendX&gt;ZendX_&lt;/ZendX&gt;
            &lt;Doctrine&gt;Doctrine_&lt;/Doctrine&gt;
        &lt;/autoloaderNamespaces&gt;

[...]        

    &lt;/production&gt;
    &lt;staging extends=&quot;production&quot; /&gt;
    &lt;development extends=&quot;production&quot; /&gt;
    &lt;testing extends=&quot;production&quot; /&gt;
&lt;/configuration&gt;</code></pre></div><p>hope that helps understanding your problem</p>]]></description>
			<author><![CDATA[dummy@example.com (samuelherzog)]]></author>
			<pubDate>Wed, 15 Sep 2010 00:40:27 +0000</pubDate>
			<guid>http://www.zendcasts.com/forum/viewtopic.php?pid=1064#p1064</guid>
		</item>
		<item>
			<title><![CDATA[Re: ZC42 – Deep Integration between Zend and Doctrine 1.2]]></title>
			<link>http://www.zendcasts.com/forum/viewtopic.php?pid=1063#p1063</link>
			<description><![CDATA[<p>i found very interesting problem with application.ini and application.xml<br />i try to make similar with ini but when i change ini to xml in your project has errors like creating folder classprefix in&#160; models folder (models\model) didnt zend config read it like ini file ? on my server they disabled parse_ini for security reasons so i cant use ini format i must use xml ... but at this rate it becomes useless</p><p>may you look what can i do about xml configuration</p>]]></description>
			<author><![CDATA[dummy@example.com (tribesman)]]></author>
			<pubDate>Tue, 14 Sep 2010 23:05:49 +0000</pubDate>
			<guid>http://www.zendcasts.com/forum/viewtopic.php?pid=1063#p1063</guid>
		</item>
		<item>
			<title><![CDATA[Re: ZC42 – Deep Integration between Zend and Doctrine 1.2]]></title>
			<link>http://www.zendcasts.com/forum/viewtopic.php?pid=1053#p1053</link>
			<description><![CDATA[<p>i try to integrate but i have some problems :S<br />first of all i use xml configuration file </p><p>i change your ini settings to xml and try to load it but when i realize it when i set classprefix doctrine cli creates automaticly model folder too i search all the web but didnt find anything about here my xml config <br /></p><div class="codebox"><pre class="vscroll"><code>&lt;autoloaderNamespaces&gt;
&lt;ZendX&gt;ZendX&lt;/ZendX&gt;
&lt;Doctrine&gt;Doctrine&lt;/Doctrine&gt;
&lt;/autoloaderNamespaces&gt;

&lt;doctrine&gt;
&lt;dsn&gt;mysql://USERNAME:PASSWORD@localhost/dbname&lt;/dsn&gt;
&lt;data_fixtures_path&gt;&lt;zf:const zf:name=&quot;APPLICATION_PATH&quot;/&gt;/configs/doctrine/data/fixtures&lt;/data_fixtures_path&gt;
&lt;sql_path&gt;&lt;zf:const zf:name=&quot;APPLICATION_PATH&quot;/&gt;/configs/doctrine/data/sql&lt;/sql_path&gt;
&lt;migrations_path&gt;&lt;zf:const zf:name=&quot;APPLICATION_PATH&quot;/&gt;/configs/doctrine/migrations&lt;/migrations_path&gt;
&lt;models_path&gt;&lt;zf:const zf:name=&quot;APPLICATION_PATH&quot;/&gt;/modules/default/models&lt;/models_path&gt;
&lt;yaml_schema_path&gt;&lt;zf:const zf:name=&quot;APPLICATION_PATH&quot;/&gt;/configs/doctrine/schema.yml&lt;/yaml_schema_path&gt;

&lt;generate_models_options&gt;
&lt;pearStyle&gt;true&lt;/pearStyle&gt;
&lt;generateTableClasses&gt;false&lt;/generateTableClasses&gt;
&lt;generateBaseClasses&gt;true&lt;/generateBaseClasses&gt;
&lt;baseClassPrefix&gt;Base_&lt;/baseClassPrefix&gt;
&lt;baseClassesDirectory&gt;&lt;/baseClassesDirectory&gt;
&lt;classPrefixFiles&gt;false&lt;/classPrefixFiles&gt;
&lt;classPrefix&gt;Model_&lt;/classPrefix&gt;
&lt;/generate_models_options&gt;
&lt;/doctrine&gt;

for cli
&lt;doctrineCLI extends=&quot;production&quot;&gt;
&lt;model_loading&gt;1&lt;/model_loading&gt;
&lt;/doctrineCLI&gt;</code></pre></div><p>and here my bootstrap init function<br /></p><div class="codebox"><pre><code>    protected function _initDoctrine(){
        $this-&gt;getApplication()-&gt;getAutoloader()-&gt;pushAutoloader(array(&#039;Doctrine&#039;,&#039;autoload&#039;));
        spl_autoload_register(array(&#039;Doctrine&#039;,&#039;modelsAutoload&#039;));
        $manager=Doctrine_Manager::getInstance();
        $manager-&gt;setAttribute(Doctrine::ATTR_AUTO_ACCESSOR_OVERRIDE,true);
        $manager-&gt;setAttribute(Doctrine::ATTR_MODEL_LOADING, Doctrine::MODEL_LOADING_CONSERVATIVE);
        $manager-&gt;setAttribute(Doctrine::ATTR_AUTOLOAD_TABLE_CLASSES, true);
        $doctrineconfig=$this-&gt;getOption(&#039;doctrine&#039;);
        Doctrine::loadModels($doctrineconfig[&#039;models_path&#039;]);
        $conn=Doctrine_Manager::connection($doctrineconfig[&#039;dsn&#039;],&#039;doctrine&#039;);
        $conn-&gt;setAttribute(Doctrine::ATTR_USE_NATIVE_ENUM, true);
        return $conn;
    }</code></pre></div><p>and last one doctrine.php in scripts folder</p><div class="codebox"><pre><code>// Define path to application directory
defined(&#039;APPLICATION_PATH&#039;)
    || define(&#039;APPLICATION_PATH&#039;, realpath(dirname(__FILE__) . &#039;/..&#039;));

// Define application environment
defined(&#039;APPLICATION_ENV&#039;)
    || define(&#039;APPLICATION_ENV&#039;, (getenv(&#039;APPLICATION_ENV&#039;) ? getenv(&#039;APPLICATION_ENV&#039;) : &#039;doctrineCLI&#039;));

// Ensure library/ is on include_path
set_include_path(implode(PATH_SEPARATOR, array(
    realpath(APPLICATION_PATH . &#039;/../library&#039;),
    get_include_path(),
)));

/** Zend_Application */
require_once &#039;Zend/Application.php&#039;;

// Create application, bootstrap, and run
$application = new Zend_Application(
    APPLICATION_ENV,
    APPLICATION_PATH . &#039;/configs/application.xml&#039;
);
$application-&gt;getBootstrap()-&gt;bootstrap(&#039;doctrine&#039;);
$config= $application-&gt;getOption(&#039;doctrine&#039;);
$cli = new Doctrine_Cli($config);
$cli-&gt;run($_SERVER[&#039;argv&#039;]);</code></pre></div><p>i use zf 1.10.8 and doctrine 1.2.3<br />i cant understand why it makes that</p>]]></description>
			<author><![CDATA[dummy@example.com (tribesman)]]></author>
			<pubDate>Fri, 10 Sep 2010 11:25:11 +0000</pubDate>
			<guid>http://www.zendcasts.com/forum/viewtopic.php?pid=1053#p1053</guid>
		</item>
		<item>
			<title><![CDATA[Re: ZC42 – Deep Integration between Zend and Doctrine 1.2]]></title>
			<link>http://www.zendcasts.com/forum/viewtopic.php?pid=1033#p1033</link>
			<description><![CDATA[<p>Hey Jon , </p><p>Not fully implemented , but just thought this may work . I want to play more with doctrine and your way also .</p><p>But when watching the video I thought of taking the challenge to bring a solution for the module model generator <img src="http://www.zendcasts.com/forum/img/smilies/smile.png" width="15" height="15" alt="smile" /> </p><p><a href="http://gist.github.com/555473">http://gist.github.com/555473</a></p><p>This will create models inside the module . We need to change prefix class path like the same <img src="http://www.zendcasts.com/forum/img/smilies/smile.png" width="15" height="15" alt="smile" /> .</p><p>Hope this works <img src="http://www.zendcasts.com/forum/img/smilies/smile.png" width="15" height="15" alt="smile" /> .</p>]]></description>
			<author><![CDATA[dummy@example.com (harikt)]]></author>
			<pubDate>Sat, 28 Aug 2010 19:36:46 +0000</pubDate>
			<guid>http://www.zendcasts.com/forum/viewtopic.php?pid=1033#p1033</guid>
		</item>
		<item>
			<title><![CDATA[Re: ZC42 – Deep Integration between Zend and Doctrine 1.2]]></title>
			<link>http://www.zendcasts.com/forum/viewtopic.php?pid=868#p868</link>
			<description><![CDATA[<p>I have a problem with generate-migrations-diff. <br /></p><div class="codebox"><pre><code>doctrine.data_fixtures_path     = APPLICATION_DATA_PATH &quot;/doctrine/fixtures&quot;
doctrine.sql_path         = APPLICATION_DATA_PATH &quot;/doctrine/sql&quot;
doctrine.migrations_path     = APPLICATION_DATA_PATH &quot;/doctrine/migrations&quot;
doctrine.yaml_schema_path     = APPLICATION_DATA_PATH &quot;/doctrine/schema.yml&quot;
doctrine.models_path         = APPLICATION_PATH &quot;/models&quot;
doctrine.generate_models_options.pearStyle            = true
doctrine.generate_models_options.generateTableClasses = false
doctrine.generate_models_options.generateBaseClasses  = true
doctrine.generate_models_options.baseClassPrefix      = &quot;Base_&quot;
doctrine.generate_models_options.baseClassesDirectory = 
doctrine.generate_models_options.classPrefixFiles     = false
doctrine.generate_models_options.classPrefix  = APPLICATION_NAMESPACE &quot;_Model_&quot;
doctrine.model_autoloading = 2</code></pre></div><p>classPrefix = &quot;Myapps_Model_&quot;</p><p>Doctrine_Core::isValidModelClass($class)<br />$class equal <strong>User</strong>, but not <strong>Myapps_Model_User</strong> and Doctrine_Core::isValidModelClass($class) function return false.</p><p>How to make it work?</p><br /><p>Zend Framework 1.10.4<br />Doctrine 1.2.2<br />PHP 5.3.2-1ubuntu4.2 with Suhosin-Patch (cli) (built: May 13 2010 20:03:45)</p><p>Sorry for my EN.</p>]]></description>
			<author><![CDATA[dummy@example.com (xams)]]></author>
			<pubDate>Sun, 23 May 2010 13:39:07 +0000</pubDate>
			<guid>http://www.zendcasts.com/forum/viewtopic.php?pid=868#p868</guid>
		</item>
		<item>
			<title><![CDATA[Re: ZC42 – Deep Integration between Zend and Doctrine 1.2]]></title>
			<link>http://www.zendcasts.com/forum/viewtopic.php?pid=866#p866</link>
			<description><![CDATA[<p>Hey dudes!</p><p>I got exactly the same error as jiewmeng up there...<br /></p><div class="codebox"><pre><code>D:\Projects\ZF\doctrine\application\scripts&gt;php.exe doctrine.php build-all-reload
build-all-reload - Are you sure you wish to drop your databases? (y/n)
y
build-all-reload - Successfully dropped database for connection named &#039;Doctrine&#039;
build-all-reload - Generated models successfully from YAML schema
build-all-reload - Successfully created database for connection named &#039;Doctrine&#039;
build-all-reload - Created tables successfully
PHP Fatal error:  Cannot redeclare class Model_Car in D:\Projects\ZF\doctrine\application\models\Car.php on line 16</code></pre></div><p>Anything to say about it? =/</p><p>Really thanks!</p>]]></description>
			<author><![CDATA[dummy@example.com (kupper)]]></author>
			<pubDate>Thu, 20 May 2010 12:25:11 +0000</pubDate>
			<guid>http://www.zendcasts.com/forum/viewtopic.php?pid=866#p866</guid>
		</item>
	</channel>
</rss>

