<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: My first Zend Framework proposal is now in incubator!</title>
	<atom:link href="http://www.rmauger.co.uk/2009/01/my-first-zend-framework-proposal-is-now-in-incubator/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rmauger.co.uk/2009/01/my-first-zend-framework-proposal-is-now-in-incubator/</link>
	<description>Randomness will get you everywhere.</description>
	<lastBuildDate>Mon, 30 Aug 2010 22:02:08 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Anonymous</title>
		<link>http://www.rmauger.co.uk/2009/01/my-first-zend-framework-proposal-is-now-in-incubator/comment-page-1/#comment-550</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Wed, 03 Mar 2010 11:34:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.rmauger.co.uk/?p=16#comment-550</guid>
		<description>&lt;blockquote cite=&quot;#commentbody-153&quot;&gt;
&lt;strong&gt;&lt;a href=&quot;#comment-153&quot; rel=&quot;nofollow&quot;&gt;Sudheer&lt;/a&gt; :&lt;/strong&gt;
          Cool. I have written these validators in several areas on my application. I will look forward for the component in 1.8.
         &lt;/blockquote&gt;</description>
		<content:encoded><![CDATA[<blockquote cite="#commentbody-153"><p>
<strong><a href="#comment-153" rel="nofollow">Sudheer</a> :</strong><br />
          Cool. I have written these validators in several areas on my application. I will look forward for the component in 1.8.
         </p></blockquote>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sudheer</title>
		<link>http://www.rmauger.co.uk/2009/01/my-first-zend-framework-proposal-is-now-in-incubator/comment-page-1/#comment-153</link>
		<dc:creator>Sudheer</dc:creator>
		<pubDate>Fri, 06 Mar 2009 12:15:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.rmauger.co.uk/?p=16#comment-153</guid>
		<description>Cool. I have written these validators in several areas on my application. I will look forward for the component in 1.8.</description>
		<content:encoded><![CDATA[<p>Cool. I have written these validators in several areas on my application. I will look forward for the component in 1.8.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ryan</title>
		<link>http://www.rmauger.co.uk/2009/01/my-first-zend-framework-proposal-is-now-in-incubator/comment-page-1/#comment-145</link>
		<dc:creator>ryan</dc:creator>
		<pubDate>Sat, 07 Feb 2009 08:44:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.rmauger.co.uk/?p=16#comment-145</guid>
		<description>For this i would recommend using the &#039;exclude&#039; feature, You can pass a string to the exclude parameter, allowing you to exclude one or more records from the seearch. in this case you would likely want to pass it a string, such as $validate = new Zend_Validate_Db_NoRecordExists(&#039;table&#039;, &#039;other_id&#039;, &#039;user_id = x&#039;); where x is the id of your user. This would eliminate all records where the user_id is not the id of the user you are looking for, and then your search will only be for your unique combination.

I hope this helps!</description>
		<content:encoded><![CDATA[<p>For this i would recommend using the &#8216;exclude&#8217; feature, You can pass a string to the exclude parameter, allowing you to exclude one or more records from the seearch. in this case you would likely want to pass it a string, such as $validate = new Zend_Validate_Db_NoRecordExists(&#8216;table&#8217;, &#8216;other_id&#8217;, &#8216;user_id = x&#8217;); where x is the id of your user. This would eliminate all records where the user_id is not the id of the user you are looking for, and then your search will only be for your unique combination.</p>
<p>I hope this helps!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: https://me.yahoo.com/a/_41gcOhgj4XI1pAB.Kqq4oywuwkctg--#3822c</title>
		<link>http://www.rmauger.co.uk/2009/01/my-first-zend-framework-proposal-is-now-in-incubator/comment-page-1/#comment-144</link>
		<dc:creator>https://me.yahoo.com/a/_41gcOhgj4XI1pAB.Kqq4oywuwkctg--#3822c</dc:creator>
		<pubDate>Fri, 06 Feb 2009 23:32:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.rmauger.co.uk/?p=16#comment-144</guid>
		<description>Hello,

first of all: Your Proposal is very usefull...

I&#039;ve a question concerning this Validator: I&#039;ve a &quot;relation table&quot; where user_ids and &quot;other&quot;_ids are inside. How can I validate this with your extension?
The Problem is, that I can add two times a Zend_Validate_Db_NoRecordExists Validator but this don&#039;t matches the problem because its allowed to have by ex. a user_id multiple times in the table. Only the combinations are unique!

I hope you understand the problem ;)

Greeting,
Robert</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>first of all: Your Proposal is very usefull&#8230;</p>
<p>I&#8217;ve a question concerning this Validator: I&#8217;ve a &#8220;relation table&#8221; where user_ids and &#8220;other&#8221;_ids are inside. How can I validate this with your extension?<br />
The Problem is, that I can add two times a Zend_Validate_Db_NoRecordExists Validator but this don&#8217;t matches the problem because its allowed to have by ex. a user_id multiple times in the table. Only the combinations are unique!</p>
<p>I hope you understand the problem <img src='http://www.rmauger.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Greeting,<br />
Robert</p>
]]></content:encoded>
	</item>
</channel>
</rss>
