<?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: A review of the Zend Framework - Part 1</title>
	<atom:link href="http://blog.octabox.com/2007/05/25/a-review-of-the-zend-framework-part-1/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.octabox.com/2007/05/25/a-review-of-the-zend-framework-part-1/</link>
	<description>Opinions on starting up online, web development, graphical design and other random curiosities</description>
	<pubDate>Thu, 21 Aug 2008 20:11:47 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
		<item>
		<title>By: PHP Framework Resource Guide &#171; Ammasajan&#8217;s Weblog</title>
		<link>http://blog.octabox.com/2007/05/25/a-review-of-the-zend-framework-part-1/#comment-432</link>
		<dc:creator>PHP Framework Resource Guide &#171; Ammasajan&#8217;s Weblog</dc:creator>
		<pubDate>Thu, 26 Jun 2008 08:33:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.octabox.com/2007/05/25/a-review-of-the-zend-framework-part-1/#comment-432</guid>
		<description>[...] A review of the Zend Framework, (includes 3 parts)  [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] A review of the Zend Framework, (includes 3 parts)  [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ogito blog &#187; Blog Archive &#187; Eyeing the Zend framework</title>
		<link>http://blog.octabox.com/2007/05/25/a-review-of-the-zend-framework-part-1/#comment-190</link>
		<dc:creator>Ogito blog &#187; Blog Archive &#187; Eyeing the Zend framework</dc:creator>
		<pubDate>Fri, 02 Nov 2007 22:33:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.octabox.com/2007/05/25/a-review-of-the-zend-framework-part-1/#comment-190</guid>
		<description>[...] for some time already, so it&#8217;s hard to tell how they are doing, but at least they did a nice review / introduction to Zend [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] for some time already, so it&#8217;s hard to tell how they are doing, but at least they did a nice review / introduction to Zend [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: slave</title>
		<link>http://blog.octabox.com/2007/05/25/a-review-of-the-zend-framework-part-1/#comment-188</link>
		<dc:creator>slave</dc:creator>
		<pubDate>Sat, 15 Sep 2007 12:38:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.octabox.com/2007/05/25/a-review-of-the-zend-framework-part-1/#comment-188</guid>
		<description>jude, you can do it simple...
just add DESC to the column name

$order = 'nameofcolumn DESC';
$table -&#62; fetchAll($where, $order, $count, $offset);</description>
		<content:encoded><![CDATA[<p>jude, you can do it simple&#8230;<br />
just add DESC to the column name</p>
<p>$order = &#8216;nameofcolumn DESC&#8217;;<br />
$table -&gt; fetchAll($where, $order, $count, $offset);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jude</title>
		<link>http://blog.octabox.com/2007/05/25/a-review-of-the-zend-framework-part-1/#comment-46</link>
		<dc:creator>jude</dc:creator>
		<pubDate>Wed, 13 Jun 2007 20:09:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.octabox.com/2007/05/25/a-review-of-the-zend-framework-part-1/#comment-46</guid>
		<description>Thanks a million</description>
		<content:encoded><![CDATA[<p>Thanks a million</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eran Galperin</title>
		<link>http://blog.octabox.com/2007/05/25/a-review-of-the-zend-framework-part-1/#comment-44</link>
		<dc:creator>Eran Galperin</dc:creator>
		<pubDate>Wed, 13 Jun 2007 12:54:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.octabox.com/2007/05/25/a-review-of-the-zend-framework-part-1/#comment-44</guid>
		<description>@Jude:
The Zend_Db_Table class does allow sorted queries via the ORDER BY clause. The full fetching method arguments are (taken from the Zend Framework manual):

$table -&gt; fetchAll($where, $order, $count, $offset);

Where $table is an instance of a Zend_Db_Table extended class.

Should the need for more complicated queries arise (and it does) you can get a Select object by using the Zend_Db_Table adapter -

$select = $table -&gt; getAdapter() -&gt; select();</description>
		<content:encoded><![CDATA[<p>@Jude:<br />
The Zend_Db_Table class does allow sorted queries via the ORDER BY clause. The full fetching method arguments are (taken from the Zend Framework manual):</p>
<p>$table -> fetchAll($where, $order, $count, $offset);</p>
<p>Where $table is an instance of a Zend_Db_Table extended class.</p>
<p>Should the need for more complicated queries arise (and it does) you can get a Select object by using the Zend_Db_Table adapter -</p>
<p>$select = $table -> getAdapter() -> select();</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jude</title>
		<link>http://blog.octabox.com/2007/05/25/a-review-of-the-zend-framework-part-1/#comment-43</link>
		<dc:creator>jude</dc:creator>
		<pubDate>Wed, 13 Jun 2007 06:09:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.octabox.com/2007/05/25/a-review-of-the-zend-framework-part-1/#comment-43</guid>
		<description>Zend's Db_Table class does not do SQL queries like DESC &#124; ASC. The Zend_Db_Select class does. When I'm working with the Db_Table class, how can I use DESC &#124; ASC? It it possible to use Select Class methods from the Table class?</description>
		<content:encoded><![CDATA[<p>Zend&#8217;s Db_Table class does not do SQL queries like DESC | ASC. The Zend_Db_Select class does. When I&#8217;m working with the Db_Table class, how can I use DESC | ASC? It it possible to use Select Class methods from the Table class?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lars Helt</title>
		<link>http://blog.octabox.com/2007/05/25/a-review-of-the-zend-framework-part-1/#comment-40</link>
		<dc:creator>Lars Helt</dc:creator>
		<pubDate>Tue, 12 Jun 2007 16:35:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.octabox.com/2007/05/25/a-review-of-the-zend-framework-part-1/#comment-40</guid>
		<description>It would be nice with a comparison to the eZ components which look at least as interesting as the zend framework AFAIC.</description>
		<content:encoded><![CDATA[<p>It would be nice with a comparison to the eZ components which look at least as interesting as the zend framework AFAIC.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patrick Lee</title>
		<link>http://blog.octabox.com/2007/05/25/a-review-of-the-zend-framework-part-1/#comment-19</link>
		<dc:creator>Patrick Lee</dc:creator>
		<pubDate>Wed, 30 May 2007 21:06:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.octabox.com/2007/05/25/a-review-of-the-zend-framework-part-1/#comment-19</guid>
		<description>Great summary, Eran.  I'm gearing up to start using the Zend Framework for all my new projects.  Looks like it will definitely be a better choice than equivalent PEAR packages and the PHP5-only aspect is a great feature in my opinion.  Looking forward to part 2 next week...</description>
		<content:encoded><![CDATA[<p>Great summary, Eran.  I&#8217;m gearing up to start using the Zend Framework for all my new projects.  Looks like it will definitely be a better choice than equivalent PEAR packages and the PHP5-only aspect is a great feature in my opinion.  Looking forward to part 2 next week&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The Programming and Management Blog &#187; Developer Links for 26/05/2007</title>
		<link>http://blog.octabox.com/2007/05/25/a-review-of-the-zend-framework-part-1/#comment-17</link>
		<dc:creator>The Programming and Management Blog &#187; Developer Links for 26/05/2007</dc:creator>
		<pubDate>Sat, 26 May 2007 09:42:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.octabox.com/2007/05/25/a-review-of-the-zend-framework-part-1/#comment-17</guid>
		<description>[...] A review of the Zend Framework - Part 1 [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] A review of the Zend Framework - Part 1 [&#8230;]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
