<?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: Zend_Db Update and Delete</title>
	<atom:link href="http://www.zendcasts.com/zend_db-update-and-delete/2009/04/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zendcasts.com/zend_db-update-and-delete/2009/04/</link>
	<description>free Zend Framework screencasts. Video tutorials to get you up to speed with different parts of the Zend Framework and enterprise PHP development.</description>
	<lastBuildDate>Wed, 01 Feb 2012 00:49:27 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: chris2011</title>
		<link>http://www.zendcasts.com/zend_db-update-and-delete/2009/04/comment-page-1/#comment-26040</link>
		<dc:creator>chris2011</dc:creator>
		<pubDate>Thu, 17 Nov 2011 21:09:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=182#comment-26040</guid>
		<description>It woud be nice to post back when finding a solution after asking for help . Just a thoujht ..

Bob Lorriman   had this one : 
&quot;Anybody know why I would be getting the error:
 Notice: Trying to get property of non-object in . . . update.phtml on line 4
 
(line 4)
 ‘email’ =&gt; $this-&gt;user-&gt;email, &quot;

For those with the same problem, pay special attention to that  part in the video tutorial that deals with  adding a route 
$router-&gt;addRoute(          
	&#039;crud&#039;,          
	new Zend_Controller_Router_Route(&#039;/index/:action/:id&#039;, array(&#039;controller&#039; =&gt; &#039;index&#039;))  );  

Forget about it and you get into Bob Lorriman &#039;s  problem  :)

(ok, the set of lines that implement the route not  just the above mentioned line of code .)</description>
		<content:encoded><![CDATA[<p>It woud be nice to post back when finding a solution after asking for help . Just a thoujht ..</p>
<p>Bob Lorriman   had this one :<br />
&#8220;Anybody know why I would be getting the error:<br />
 Notice: Trying to get property of non-object in . . . update.phtml on line 4</p>
<p>(line 4)<br />
 ‘email’ =&gt; $this-&gt;user-&gt;email, &#8221;</p>
<p>For those with the same problem, pay special attention to that  part in the video tutorial that deals with  adding a route<br />
$router-&gt;addRoute(<br />
	&#8216;crud&#8217;,<br />
	new Zend_Controller_Router_Route(&#8216;/index/:action/:id&#8217;, array(&#8216;controller&#8217; =&gt; &#8216;index&#8217;))  );  </p>
<p>Forget about it and you get into Bob Lorriman &#8216;s  problem  <img src='http://www.zendcasts.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>(ok, the set of lines that implement the route not  just the above mentioned line of code .)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pravin</title>
		<link>http://www.zendcasts.com/zend_db-update-and-delete/2009/04/comment-page-1/#comment-14614</link>
		<dc:creator>Pravin</dc:creator>
		<pubDate>Wed, 19 Jan 2011 16:20:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=182#comment-14614</guid>
		<description>Osom Jon! 
Thanks for the information.</description>
		<content:encoded><![CDATA[<p>Osom Jon!<br />
Thanks for the information.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nayre</title>
		<link>http://www.zendcasts.com/zend_db-update-and-delete/2009/04/comment-page-1/#comment-11513</link>
		<dc:creator>Nayre</dc:creator>
		<pubDate>Sun, 24 Oct 2010 20:03:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=182#comment-11513</guid>
		<description>Tell me Please how to configure resources.router in application.ini for ZF 1.10 + for this video</description>
		<content:encoded><![CDATA[<p>Tell me Please how to configure resources.router in application.ini for ZF 1.10 + for this video</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nicklas</title>
		<link>http://www.zendcasts.com/zend_db-update-and-delete/2009/04/comment-page-1/#comment-10226</link>
		<dc:creator>Nicklas</dc:creator>
		<pubDate>Wed, 08 Sep 2010 12:33:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=182#comment-10226</guid>
		<description>I have a little problem to get relationship, in another relation, could somebody help me:
I have a main table &quot;Order&quot; that has depedentTables &quot;Orderitems&quot;. And that relationship works well.
But I also have a relationship in each order item row to select Unittype from third table &quot;Set_unittypes&quot;.
And I don&#039;t get how to make this last relationship work out.


Order_items:
[code]
	protected $_referenceMap = array(
			&#039;orderitems&#039; =&gt; array(
					&#039;columns&#039; =&gt; array(&#039;parent_id&#039;),
					&#039;refTableClass&#039; =&gt; &#039;Model_DbTable_Order&#039;,
					&#039;refColumns&#039;	=&gt; array(&#039;entity_ID&#039;)
				),
			&#039;setunittypes&#039; =&gt; array(
					&#039;columns&#039; =&gt; array(&#039;unittype&#039;),
					&#039;refTableClass&#039; =&gt; &#039;Model_DbTable_SetUnittypes&#039;,
					&#039;refColumns&#039;	=&gt; array(&#039;id&#039;)
				),	
	);
[/code]

The setunittypes as Orderitems as depedenttable.

The relationship Order to Order_items work great. But I don&#039;t know how I shall connect the Order_items relationship to Unittype for each row.
[code]
			$order = $this-&gt;orderService-&gt;GetOrder($get_entity_id);
			$this-&gt;view-&gt;order = $order;
			
			if ($order) {
			$order_items = $this-&gt;view-&gt;order-&gt;findDependentRowset(&#039;Model_DbTable_Orderitems&#039;);
[/code]</description>
		<content:encoded><![CDATA[<p>I have a little problem to get relationship, in another relation, could somebody help me:<br />
I have a main table &#8220;Order&#8221; that has depedentTables &#8220;Orderitems&#8221;. And that relationship works well.<br />
But I also have a relationship in each order item row to select Unittype from third table &#8220;Set_unittypes&#8221;.<br />
And I don&#8217;t get how to make this last relationship work out.</p>
<p>Order_items:<br />
[code]<br />
	protected $_referenceMap = array(<br />
			'orderitems' =&gt; array(<br />
					'columns' =&gt; array('parent_id'),<br />
					'refTableClass' =&gt; 'Model_DbTable_Order',<br />
					'refColumns'	=&gt; array('entity_ID')<br />
				),<br />
			'setunittypes' =&gt; array(<br />
					'columns' =&gt; array('unittype'),<br />
					'refTableClass' =&gt; 'Model_DbTable_SetUnittypes',<br />
					'refColumns'	=&gt; array('id')<br />
				),<br />
	);<br />
[/code]</p>
<p>The setunittypes as Orderitems as depedenttable.</p>
<p>The relationship Order to Order_items work great. But I don&#8217;t know how I shall connect the Order_items relationship to Unittype for each row.<br />
[code]<br />
			$order = $this-&gt;orderService-&gt;GetOrder($get_entity_id);<br />
			$this-&gt;view-&gt;order = $order;</p>
<p>			if ($order) {<br />
			$order_items = $this-&gt;view-&gt;order-&gt;findDependentRowset('Model_DbTable_Orderitems');<br />
[/code]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marcin</title>
		<link>http://www.zendcasts.com/zend_db-update-and-delete/2009/04/comment-page-1/#comment-9811</link>
		<dc:creator>Marcin</dc:creator>
		<pubDate>Wed, 25 Aug 2010 21:40:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=182#comment-9811</guid>
		<description>Thank you for the tutorials, jon, they are great, keep’em coming, I started few days ago and I’m following from start :)

@Pip
I got it all working, using newest 1.10.7, it required a little bit of tweaking but I can confirm that it’s working.</description>
		<content:encoded><![CDATA[<p>Thank you for the tutorials, jon, they are great, keep’em coming, I started few days ago and I’m following from start <img src='http://www.zendcasts.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>@Pip<br />
I got it all working, using newest 1.10.7, it required a little bit of tweaking but I can confirm that it’s working.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Lightbody</title>
		<link>http://www.zendcasts.com/zend_db-update-and-delete/2009/04/comment-page-1/#comment-8718</link>
		<dc:creator>Eric Lightbody</dc:creator>
		<pubDate>Thu, 22 Jul 2010 21:06:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=182#comment-8718</guid>
		<description>I was getting an error related to not having the delete view until I added:

$this-&gt;_helper-&gt;viewRenderer-&gt;setNoRender();

using zend 1.1</description>
		<content:encoded><![CDATA[<p>I was getting an error related to not having the delete view until I added:</p>
<p>$this-&gt;_helper-&gt;viewRenderer-&gt;setNoRender();</p>
<p>using zend 1.1</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shaded</title>
		<link>http://www.zendcasts.com/zend_db-update-and-delete/2009/04/comment-page-1/#comment-6309</link>
		<dc:creator>shaded</dc:creator>
		<pubDate>Wed, 24 Mar 2010 18:27:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=182#comment-6309</guid>
		<description>excellent series on zend_db so far. I have not got to the doctrine videos yet, but after seeing thing im wondering if it really can get any better.</description>
		<content:encoded><![CDATA[<p>excellent series on zend_db so far. I have not got to the doctrine videos yet, but after seeing thing im wondering if it really can get any better.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bob Lorriman</title>
		<link>http://www.zendcasts.com/zend_db-update-and-delete/2009/04/comment-page-1/#comment-3728</link>
		<dc:creator>Bob Lorriman</dc:creator>
		<pubDate>Fri, 04 Dec 2009 19:36:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=182#comment-3728</guid>
		<description>Scratch that . . . I figured it out.</description>
		<content:encoded><![CDATA[<p>Scratch that . . . I figured it out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bob Lorriman</title>
		<link>http://www.zendcasts.com/zend_db-update-and-delete/2009/04/comment-page-1/#comment-3726</link>
		<dc:creator>Bob Lorriman</dc:creator>
		<pubDate>Fri, 04 Dec 2009 19:06:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=182#comment-3726</guid>
		<description>Anybody know why I would be getting the error:

Notice: Trying to get property of non-object in . . . update.phtml on line 4

(line 4)
&#039;email&#039; =&gt; $this-&gt;user-&gt;email,</description>
		<content:encoded><![CDATA[<p>Anybody know why I would be getting the error:</p>
<p>Notice: Trying to get property of non-object in . . . update.phtml on line 4</p>
<p>(line 4)<br />
&#8216;email&#8217; =&gt; $this-&gt;user-&gt;email,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jaroslaw</title>
		<link>http://www.zendcasts.com/zend_db-update-and-delete/2009/04/comment-page-1/#comment-2242</link>
		<dc:creator>Jaroslaw</dc:creator>
		<pubDate>Fri, 21 Aug 2009 21:32:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=182#comment-2242</guid>
		<description>Ok, I coped with IT:)</description>
		<content:encoded><![CDATA[<p>Ok, I coped with IT:)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jaroslaw</title>
		<link>http://www.zendcasts.com/zend_db-update-and-delete/2009/04/comment-page-1/#comment-2241</link>
		<dc:creator>Jaroslaw</dc:creator>
		<pubDate>Fri, 21 Aug 2009 21:19:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=182#comment-2241</guid>
		<description>Hello, 

I have a problem probably with routing. 
I got that message:
 Message:
Stack trace:

#0 C:\wamp\www\zend\application\views\scripts\index\update.phtml(4): Zend_Db_Table_Row_Abstract-&gt;__get(&#039;&#039;)
#1 C:\wamp\www\zend\library\Zend\View.php(107): include(&#039;C:\wamp\www\zen...&#039;)
#2 C:\wamp\www\zend\library\Zend\View\Abstract.php(820): Zend_View-&gt;_run(&#039;C:\wamp\www\zen...&#039;)
#3 C:\wamp\www\zend\library\Zend\Controller\Action\Helper\ViewRenderer.php(902): Zend_View_Abstract-&gt;render(&#039;index/update.ph...&#039;)
#4 C:\wamp\www\zend\library\Zend\Controller\Action\Helper\ViewRenderer.php(923): Zend_Controller_Action_Helper_ViewRenderer-&gt;renderScript(&#039;index/update.ph...&#039;, NULL)
#5 C:\wamp\www\zend\library\Zend\Controller\Action\Helper\ViewRenderer.php(962): Zend_Controller_Action_Helper_ViewRenderer-&gt;render()
#6 C:\wamp\www\zend\library\Zend\Controller\Action\HelperBroker.php(276): Zend_Controller_Action_Helper_ViewRenderer-&gt;postDispatch()
#7 C:\wamp\www\zend\library\Zend\Controller\Action.php(513): Zend_Controller_Action_HelperBroker-&gt;notifyPostDispatch()
#8 C:\wamp\www\zend\library\Zend\Controller\Dispatcher\Standard.php(285): Zend_Controller_Action-&gt;dispatch(&#039;updateAction&#039;)
#9 C:\wamp\www\zend\library\Zend\Controller\Front.php(934): Zend_Controller_Dispatcher_Standard-&gt;dispatch(Object(Zend_Controller_Request_Http), Object(Zend_Controller_Response_Http))
#10 C:\wamp\www\zend\public\index.php(34): Zend_Controller_Front-&gt;dispatch()
#11 {main}

Request parameters:

array(3) {
  [&quot;action&quot;]=&gt;
  string(6) &quot;update&quot;
  [&quot;id&quot;]=&gt;
  string(2) &quot;27&quot;
  [&quot;controller&quot;]=&gt;
  string(5) &quot;index&quot;
}

please gives me a some direction how to solve it. 

my bootstrap file is: 
setControllerDirectory(APPLICATION_PATH . &#039;/controllers&#039;);
		
		$frontController-&gt;setParam(&#039;env&#039;, APPLICATION_ENVIRONMENT);
	
		Zend_Layout::startMvc(APPLICATION_PATH . &#039;/layouts/scripts&#039;);
		
		$view = Zend_Layout::getMvcInstance()-&gt;getView();
		$view-&gt;doctype(&#039;XHTML1_STRICT&#039;);
		
 
$router = $frontController-&gt;getRouter();

$router-&gt;addRoute(
        &#039;crud&#039;,
        new Zend_Controller_Router_Route(&#039;/index/:action/:id&#039;, array(&#039;controller&#039; =&gt; &#039;index&#039;))
);


		unset($frontController);
		
THANKS a lot!</description>
		<content:encoded><![CDATA[<p>Hello, </p>
<p>I have a problem probably with routing.<br />
I got that message:<br />
 Message:<br />
Stack trace:</p>
<p>#0 C:\wamp\www\zend\application\views\scripts\index\update.phtml(4): Zend_Db_Table_Row_Abstract-&gt;__get(&#8221;)<br />
#1 C:\wamp\www\zend\library\Zend\View.php(107): include(&#8216;C:\wamp\www\zen&#8230;&#8217;)<br />
#2 C:\wamp\www\zend\library\Zend\View\Abstract.php(820): Zend_View-&gt;_run(&#8216;C:\wamp\www\zen&#8230;&#8217;)<br />
#3 C:\wamp\www\zend\library\Zend\Controller\Action\Helper\ViewRenderer.php(902): Zend_View_Abstract-&gt;render(&#8216;index/update.ph&#8230;&#8217;)<br />
#4 C:\wamp\www\zend\library\Zend\Controller\Action\Helper\ViewRenderer.php(923): Zend_Controller_Action_Helper_ViewRenderer-&gt;renderScript(&#8216;index/update.ph&#8230;&#8217;, NULL)<br />
#5 C:\wamp\www\zend\library\Zend\Controller\Action\Helper\ViewRenderer.php(962): Zend_Controller_Action_Helper_ViewRenderer-&gt;render()<br />
#6 C:\wamp\www\zend\library\Zend\Controller\Action\HelperBroker.php(276): Zend_Controller_Action_Helper_ViewRenderer-&gt;postDispatch()<br />
#7 C:\wamp\www\zend\library\Zend\Controller\Action.php(513): Zend_Controller_Action_HelperBroker-&gt;notifyPostDispatch()<br />
#8 C:\wamp\www\zend\library\Zend\Controller\Dispatcher\Standard.php(285): Zend_Controller_Action-&gt;dispatch(&#8216;updateAction&#8217;)<br />
#9 C:\wamp\www\zend\library\Zend\Controller\Front.php(934): Zend_Controller_Dispatcher_Standard-&gt;dispatch(Object(Zend_Controller_Request_Http), Object(Zend_Controller_Response_Http))<br />
#10 C:\wamp\www\zend\public\index.php(34): Zend_Controller_Front-&gt;dispatch()<br />
#11 {main}</p>
<p>Request parameters:</p>
<p>array(3) {<br />
  ["action"]=&gt;<br />
  string(6) &#8220;update&#8221;<br />
  ["id"]=&gt;<br />
  string(2) &#8220;27&#8243;<br />
  ["controller"]=&gt;<br />
  string(5) &#8220;index&#8221;<br />
}</p>
<p>please gives me a some direction how to solve it. </p>
<p>my bootstrap file is:<br />
setControllerDirectory(APPLICATION_PATH . &#8216;/controllers&#8217;);</p>
<p>		$frontController-&gt;setParam(&#8216;env&#8217;, APPLICATION_ENVIRONMENT);</p>
<p>		Zend_Layout::startMvc(APPLICATION_PATH . &#8216;/layouts/scripts&#8217;);</p>
<p>		$view = Zend_Layout::getMvcInstance()-&gt;getView();<br />
		$view-&gt;doctype(&#8216;XHTML1_STRICT&#8217;);</p>
<p>$router = $frontController-&gt;getRouter();</p>
<p>$router-&gt;addRoute(<br />
        &#8216;crud&#8217;,<br />
        new Zend_Controller_Router_Route(&#8216;/index/:action/:id&#8217;, array(&#8216;controller&#8217; =&gt; &#8216;index&#8217;))<br />
);</p>
<p>		unset($frontController);</p>
<p>THANKS a lot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jon</title>
		<link>http://www.zendcasts.com/zend_db-update-and-delete/2009/04/comment-page-1/#comment-1057</link>
		<dc:creator>jon</dc:creator>
		<pubDate>Fri, 29 May 2009 15:12:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=182#comment-1057</guid>
		<description>AJAX is usually more user friendly IMHO, however it requires a little more thought. If you&#039;re going to do AJAX development, you need to decide if you want JavaScript to be a requirement for your application to run correctly. Making a site that degrades gracefully requires a lot more thought, especially if you want your entire form to work either way. I did such an implementation awhile back on my blog – http://jon.lebensold.ca/development/decoupled-validation-with-zend_form-zend_validate-and-zend-mvc .

Hope that helps!</description>
		<content:encoded><![CDATA[<p>AJAX is usually more user friendly IMHO, however it requires a little more thought. If you&#8217;re going to do AJAX development, you need to decide if you want JavaScript to be a requirement for your application to run correctly. Making a site that degrades gracefully requires a lot more thought, especially if you want your entire form to work either way. I did such an implementation awhile back on my blog – <a href="http://jon.lebensold.ca/development/decoupled-validation-with-zend_form-zend_validate-and-zend-mvc" rel="nofollow">http://jon.lebensold.ca/development/decoupled-validation-with-zend_form-zend_validate-and-zend-mvc</a> .</p>
<p>Hope that helps!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Dressler</title>
		<link>http://www.zendcasts.com/zend_db-update-and-delete/2009/04/comment-page-1/#comment-297</link>
		<dc:creator>David Dressler</dc:creator>
		<pubDate>Mon, 04 May 2009 21:24:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=182#comment-297</guid>
		<description>Hey Jon,

I was wondering if its best practice to use a Post to update and delete records, or would AJAX be a way of making this app more user friendly?  The only problem i see is if they had JavaScript disabled the AJAX way wouldn&#039;t work.

I was thinking you would have the delete link call some javascript to make the row disappear when you delete it and send a AJAX request to delete the row.</description>
		<content:encoded><![CDATA[<p>Hey Jon,</p>
<p>I was wondering if its best practice to use a Post to update and delete records, or would AJAX be a way of making this app more user friendly?  The only problem i see is if they had JavaScript disabled the AJAX way wouldn&#8217;t work.</p>
<p>I was thinking you would have the delete link call some javascript to make the row disappear when you delete it and send a AJAX request to delete the row.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sedat</title>
		<link>http://www.zendcasts.com/zend_db-update-and-delete/2009/04/comment-page-1/#comment-276</link>
		<dc:creator>Sedat</dc:creator>
		<pubDate>Mon, 04 May 2009 07:42:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=182#comment-276</guid>
		<description>Hi Jon.
I&#039;m so sorry to write your name is kevin. I don&#039;t now why i&#039;m write kevin while post comment.  :) . Sorry :)</description>
		<content:encoded><![CDATA[<p>Hi Jon.<br />
I&#8217;m so sorry to write your name is kevin. I don&#8217;t now why i&#8217;m write kevin while post comment.  <img src='http://www.zendcasts.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  . Sorry <img src='http://www.zendcasts.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jon</title>
		<link>http://www.zendcasts.com/zend_db-update-and-delete/2009/04/comment-page-1/#comment-269</link>
		<dc:creator>jon</dc:creator>
		<pubDate>Mon, 04 May 2009 02:29:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=182#comment-269</guid>
		<description>Hi Sedat,

my name is Jon, but thanks for the feedback!

@julien, I&#039;m using the UserService object as a way of separating out business-related queries from configuration. In the following video (which is currently encoding on my humble machine), you&#039;ll see that I use the UserTables class to store reference-related code. This is a design choice I&#039;ve made on my own projects since it enables me to create small collections of re-usable queries in mini aggregates. I&#039;m not a huge fan of MVC, where your Controller can reach into the model and pick and choose how it works with persistence objects.</description>
		<content:encoded><![CDATA[<p>Hi Sedat,</p>
<p>my name is Jon, but thanks for the feedback!</p>
<p>@julien, I&#8217;m using the UserService object as a way of separating out business-related queries from configuration. In the following video (which is currently encoding on my humble machine), you&#8217;ll see that I use the UserTables class to store reference-related code. This is a design choice I&#8217;ve made on my own projects since it enables me to create small collections of re-usable queries in mini aggregates. I&#8217;m not a huge fan of MVC, where your Controller can reach into the model and pick and choose how it works with persistence objects.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sedat</title>
		<link>http://www.zendcasts.com/zend_db-update-and-delete/2009/04/comment-page-1/#comment-257</link>
		<dc:creator>sedat</dc:creator>
		<pubDate>Sun, 03 May 2009 18:52:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=182#comment-257</guid>
		<description>Hi Kevin.
Please don&#039;t stop the publish extremely and excellent videos. I&#039;m waiting the next video about &quot;one to many and many to many db relationships&quot; and then &quot;ACL and AUTH&quot; with impatience. :)

You are making really super duper good job kevin. I say with all my sincerity.

many many thank you ..

;)</description>
		<content:encoded><![CDATA[<p>Hi Kevin.<br />
Please don&#8217;t stop the publish extremely and excellent videos. I&#8217;m waiting the next video about &#8220;one to many and many to many db relationships&#8221; and then &#8220;ACL and AUTH&#8221; with impatience. <img src='http://www.zendcasts.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>You are making really super duper good job kevin. I say with all my sincerity.</p>
<p>many many thank you ..</p>
<p> <img src='http://www.zendcasts.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Julien L</title>
		<link>http://www.zendcasts.com/zend_db-update-and-delete/2009/04/comment-page-1/#comment-183</link>
		<dc:creator>Julien L</dc:creator>
		<pubDate>Tue, 28 Apr 2009 11:50:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=182#comment-183</guid>
		<description>Hi ! 

I have a question about the UserService object. It isn&#039;t better to use UsersTable class and put inside all our request to the database  ?

Best regards,
Julien</description>
		<content:encoded><![CDATA[<p>Hi ! </p>
<p>I have a question about the UserService object. It isn&#8217;t better to use UsersTable class and put inside all our request to the database  ?</p>
<p>Best regards,<br />
Julien</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: snapshot</title>
		<link>http://www.zendcasts.com/zend_db-update-and-delete/2009/04/comment-page-1/#comment-178</link>
		<dc:creator>snapshot</dc:creator>
		<pubDate>Sat, 25 Apr 2009 13:46:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=182#comment-178</guid>
		<description>I&#039;m waiting for casts about Acl and Auth.
Good job!</description>
		<content:encoded><![CDATA[<p>I&#8217;m waiting for casts about Acl and Auth.<br />
Good job!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexander</title>
		<link>http://www.zendcasts.com/zend_db-update-and-delete/2009/04/comment-page-1/#comment-177</link>
		<dc:creator>Alexander</dc:creator>
		<pubDate>Sat, 25 Apr 2009 12:53:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=182#comment-177</guid>
		<description>&lt;blockquote&gt;
Jon
I’ve thought about setting up a forum as a way of providing more feedback in a less blog-oriented manner. I’m hoping to expand how zendcasts runs in the next couple of months. A forum is a great idea.
&lt;/blockquote&gt;

That sounds like a great idea.</description>
		<content:encoded><![CDATA[<blockquote><p>
Jon<br />
I’ve thought about setting up a forum as a way of providing more feedback in a less blog-oriented manner. I’m hoping to expand how zendcasts runs in the next couple of months. A forum is a great idea.
</p></blockquote>
<p>That sounds like a great idea.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: iceangel89</title>
		<link>http://www.zendcasts.com/zend_db-update-and-delete/2009/04/comment-page-1/#comment-175</link>
		<dc:creator>iceangel89</dc:creator>
		<pubDate>Sat, 25 Apr 2009 03:17:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=182#comment-175</guid>
		<description>Please have some tuts for ZF1.8 i think Zend Application and Tool will be great!</description>
		<content:encoded><![CDATA[<p>Please have some tuts for ZF1.8 i think Zend Application and Tool will be great!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kisin</title>
		<link>http://www.zendcasts.com/zend_db-update-and-delete/2009/04/comment-page-1/#comment-174</link>
		<dc:creator>kisin</dc:creator>
		<pubDate>Fri, 24 Apr 2009 17:11:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=182#comment-174</guid>
		<description>great scrrencast!
u really helping me with zf.

im ancoius to se more of your screencasts


thanks!</description>
		<content:encoded><![CDATA[<p>great scrrencast!<br />
u really helping me with zf.</p>
<p>im ancoius to se more of your screencasts</p>
<p>thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jon</title>
		<link>http://www.zendcasts.com/zend_db-update-and-delete/2009/04/comment-page-1/#comment-172</link>
		<dc:creator>jon</dc:creator>
		<pubDate>Fri, 24 Apr 2009 15:24:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=182#comment-172</guid>
		<description>I&#039;ve thought about setting up a forum as a way of providing more feedback in a less blog-oriented manner. I&#039;m hoping to expand how zendcasts runs in the next couple of months. A forum is a great idea.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve thought about setting up a forum as a way of providing more feedback in a less blog-oriented manner. I&#8217;m hoping to expand how zendcasts runs in the next couple of months. A forum is a great idea.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: iceangel89</title>
		<link>http://www.zendcasts.com/zend_db-update-and-delete/2009/04/comment-page-1/#comment-170</link>
		<dc:creator>iceangel89</dc:creator>
		<pubDate>Fri, 24 Apr 2009 02:54:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=182#comment-170</guid>
		<description>ya. u have been doing a very good job. i think more tutorials will be good! 

and i seem to find that there isn&#039;t many forums for zend framework ... maybe u can start 1 here? zfforums seem to kind of inactive</description>
		<content:encoded><![CDATA[<p>ya. u have been doing a very good job. i think more tutorials will be good! </p>
<p>and i seem to find that there isn&#8217;t many forums for zend framework &#8230; maybe u can start 1 here? zfforums seem to kind of inactive</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fadel</title>
		<link>http://www.zendcasts.com/zend_db-update-and-delete/2009/04/comment-page-1/#comment-168</link>
		<dc:creator>Fadel</dc:creator>
		<pubDate>Thu, 23 Apr 2009 10:45:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=182#comment-168</guid>
		<description>Hi

we need more MVC videos please, 

Thanks!</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>we need more MVC videos please, </p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexander</title>
		<link>http://www.zendcasts.com/zend_db-update-and-delete/2009/04/comment-page-1/#comment-164</link>
		<dc:creator>Alexander</dc:creator>
		<pubDate>Thu, 23 Apr 2009 08:38:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=182#comment-164</guid>
		<description>Hello Jon,

Thanks for this very nice screencast, i really love it learned a lot of it. Also all your other screencasts are great!

But i&#039;m real interested in the Zend_Form_Decorator i want to use the zend form but i can&#039;t style it my way. 

I know that i can style every element every time, but that is to much work. I know that there is a way to this ones, but i can&#039;t figure out how. If you want, please create a screencast about this.

Alexander</description>
		<content:encoded><![CDATA[<p>Hello Jon,</p>
<p>Thanks for this very nice screencast, i really love it learned a lot of it. Also all your other screencasts are great!</p>
<p>But i&#8217;m real interested in the Zend_Form_Decorator i want to use the zend form but i can&#8217;t style it my way. </p>
<p>I know that i can style every element every time, but that is to much work. I know that there is a way to this ones, but i can&#8217;t figure out how. If you want, please create a screencast about this.</p>
<p>Alexander</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jon</title>
		<link>http://www.zendcasts.com/zend_db-update-and-delete/2009/04/comment-page-1/#comment-163</link>
		<dc:creator>jon</dc:creator>
		<pubDate>Thu, 23 Apr 2009 02:13:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=182#comment-163</guid>
		<description>Hi Kevin,

that&#039;s the plan!</description>
		<content:encoded><![CDATA[<p>Hi Kevin,</p>
<p>that&#8217;s the plan!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin</title>
		<link>http://www.zendcasts.com/zend_db-update-and-delete/2009/04/comment-page-1/#comment-162</link>
		<dc:creator>Kevin</dc:creator>
		<pubDate>Wed, 22 Apr 2009 23:51:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=182#comment-162</guid>
		<description>Thanks for this, you mention the next video is on one-many relationships.  Are you going to do another on many-many?</description>
		<content:encoded><![CDATA[<p>Thanks for this, you mention the next video is on one-many relationships.  Are you going to do another on many-many?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nekufa</title>
		<link>http://www.zendcasts.com/zend_db-update-and-delete/2009/04/comment-page-1/#comment-161</link>
		<dc:creator>nekufa</dc:creator>
		<pubDate>Wed, 22 Apr 2009 18:42:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=182#comment-161</guid>
		<description>Hola! Thanks for Zend_Db screencasts :)
Do not stop please, create more videos!
Thanks!</description>
		<content:encoded><![CDATA[<p>Hola! Thanks for Zend_Db screencasts <img src='http://www.zendcasts.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Do not stop please, create more videos!<br />
Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

