<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Mike D&#039;s SharpBlog &#187; FrameWorks</title>
	<atom:link href="http://www.sharpdotinc.com/mdost/category/frameworks/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sharpdotinc.com/mdost</link>
	<description>Just another Sharpdot weblog</description>
	<lastBuildDate>Mon, 19 Dec 2011 16:11:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Zend FrameWork: Join Query Not working</title>
		<link>http://www.sharpdotinc.com/mdost/2010/07/25/zend-framework-join-query-not-working/</link>
		<comments>http://www.sharpdotinc.com/mdost/2010/07/25/zend-framework-join-query-not-working/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 02:27:38 +0000</pubDate>
		<dc:creator>Mike D</dc:creator>
						<category domain="http://www.sharpdotinc.com/mdost/category/frameworks/"><![CDATA[FrameWorks]]></category>
		<category domain="http://www.sharpdotinc.com/mdost/category/frameworks/zend-framework/"><![CDATA[Zend Framework]]></category>

		<guid isPermaLink="false">http://www.sharpdotinc.com/mdost/?p=240</guid>
		<description><![CDATA[While creating a SQL query in ZF I kept getting an error with my joins. I was able to fiz this using the code below.

$fooTable = new DbTable_Foo();
        $select = $fooTable -&#62;select(Zend_Db_Table::SELECT_WITH_FROM_PART);
        $select-&#62;setIntegrityCheck(false)	//Set integrity check is what did the trick for [...]]]></description>
			<content:encoded><![CDATA[<p>While creating a SQL query in ZF I kept getting an error with my joins. I was able to fiz this using the code below.</p>
<p><code><br />
$fooTable = new DbTable_Foo();<br />
        $select = $fooTable -&gt;select(Zend_Db_Table::SELECT_WITH_FROM_PART);</p>
<p>        $select-&gt;setIntegrityCheck(false)	//Set integrity check is what did the trick for me.<br />
        	-&gt;join('foo', 'bar.id = foo.id')<br />
			-&gt;where('foo.id = '.id);<br />
        $fooRowset = $this-&gt;getDbTable()-&gt;fetchAll($select);<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sharpdotinc.com/mdost/2010/07/25/zend-framework-join-query-not-working/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

