<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Zend_Db_Table_Abstract in version 1.5</title>
	<atom:link href="http://www.zendframeworkinaction.com/2008/01/30/zend_db_table_abstract-in-version-15/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zendframeworkinaction.com/2008/01/30/zend_db_table_abstract-in-version-15/</link>
	<description>A book about the Zend Framework</description>
	<pubDate>Sat, 22 Nov 2008 06:54:55 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: Sébastien</title>
		<link>http://www.zendframeworkinaction.com/2008/01/30/zend_db_table_abstract-in-version-15/#comment-208</link>
		<dc:creator>Sébastien</dc:creator>
		<pubDate>Sun, 03 Aug 2008 06:45:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendframeworkinaction.com/2008/01/30/zend_db_table_abstract-in-version-15/#comment-208</guid>
		<description>&lt;p&gt;I've got some problem to subscribe to the ZF mailing lists. I don't know why...
It's very strange seems that the problem is that is uses a Zend_Db_Select object instead of the SQL query of the version 1.x ... If I overload the _fetch method of Zend_Db_Table concatening inside the extra fields with the current _cols vars and  $select-&#62;from($this-&#62;_table, $cols) ... it works ! ... It's not very elegant but It works ... I'm searchig another workaround to solve this issue.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I&#8217;ve got some problem to subscribe to the ZF mailing lists. I don&#8217;t know why&#8230;
It&#8217;s very strange seems that the problem is that is uses a Zend_Db_Select object instead of the SQL query of the version 1.x &#8230; If I overload the _fetch method of Zend_Db_Table concatening inside the extra fields with the current _cols vars and  $select-&gt;from($this-&gt;_table, $cols) &#8230; it works ! &#8230; It&#8217;s not very elegant but It works &#8230; I&#8217;m searchig another workaround to solve this issue.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Rob</title>
		<link>http://www.zendframeworkinaction.com/2008/01/30/zend_db_table_abstract-in-version-15/#comment-207</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Sat, 02 Aug 2008 18:12:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendframeworkinaction.com/2008/01/30/zend_db_table_abstract-in-version-15/#comment-207</guid>
		<description>&lt;p&gt;Hi,&lt;/p&gt;

&lt;p&gt;Have you asked on the mailing list?&lt;/p&gt;

&lt;p&gt;Regards,&lt;/p&gt;

&lt;p&gt;Rob...&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi,</p>

<p>Have you asked on the mailing list?</p>

<p>Regards,</p>

<p>Rob&#8230;</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Sébastien</title>
		<link>http://www.zendframeworkinaction.com/2008/01/30/zend_db_table_abstract-in-version-15/#comment-205</link>
		<dc:creator>Sébastien</dc:creator>
		<pubDate>Thu, 31 Jul 2008 08:33:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendframeworkinaction.com/2008/01/30/zend_db_table_abstract-in-version-15/#comment-205</guid>
		<description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;I need to "fetchAll" data from a table encapsulating  "date","datetime" fields  into  mysql UNIX_TIMESTAMP function.&lt;/p&gt;

&lt;p&gt;With ZF 1.x  I replace these fields by a Zend_Db_Expr&lt;/p&gt;

&lt;p&gt;...
    public function __construct() {
        parent::__construct();&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;    $this-&#62;_cols['fecha']=new Zend_Db_Expr('UNIX_TIMESTAMP(fecha)');
    $this-&#62;_cols['fechanacimiento']=new Zend_Db_Expr('UNIX_TIMESTAMP(fechanacimiento)');
    $this-&#62;_cols['umodificacion']=new Zend_Db_Expr('UNIX_TIMESTAMP(umodificacion)');

}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;...&lt;/p&gt;

&lt;p&gt;It's totaly ignoered witht ZF 1.5.x ... 
I've tried to use _setupMetadata() method but it's ignored too ...&lt;/p&gt;

&lt;p&gt;Any Ideas ?
Thank you&lt;/p&gt;

&lt;p&gt;Regards&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hello,</p>

<p>I need to &#8220;fetchAll&#8221; data from a table encapsulating  &#8220;date&#8221;,&#8221;datetime&#8221; fields  into  mysql UNIX_TIMESTAMP function.</p>

<p>With ZF 1.x  I replace these fields by a Zend_Db_Expr</p>

<p>&#8230;
    public function __construct() {
        parent::__construct();</p>

<pre><code>    $this-&gt;_cols['fecha']=new Zend_Db_Expr('UNIX_TIMESTAMP(fecha)');
    $this-&gt;_cols['fechanacimiento']=new Zend_Db_Expr('UNIX_TIMESTAMP(fechanacimiento)');
    $this-&gt;_cols['umodificacion']=new Zend_Db_Expr('UNIX_TIMESTAMP(umodificacion)');

}
</code></pre>

<p>&#8230;</p>

<p>It&#8217;s totaly ignoered witht ZF 1.5.x &#8230; 
I&#8217;ve tried to use _setupMetadata() method but it&#8217;s ignored too &#8230;</p>

<p>Any Ideas ?
Thank you</p>

<p>Regards</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Erik</title>
		<link>http://www.zendframeworkinaction.com/2008/01/30/zend_db_table_abstract-in-version-15/#comment-35</link>
		<dc:creator>Erik</dc:creator>
		<pubDate>Thu, 31 Jan 2008 06:49:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendframeworkinaction.com/2008/01/30/zend_db_table_abstract-in-version-15/#comment-35</guid>
		<description>&lt;p&gt;Thanks for the heads up. I ran into this problem the other day, this should save me some time. :)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thanks for the heads up. I ran into this problem the other day, this should save me some time. <img src='http://www.zendframeworkinaction.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>]]></content:encoded>
	</item>
</channel>
</rss>
