<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for William Graham's blog</title>
	<atom:link href="http://liamgraham.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://liamgraham.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Mon, 09 Nov 2009 02:00:48 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Oracle modifications for Rob Allen&#8217;s Zend Framework Tutorial by aapiedra</title>
		<link>http://liamgraham.wordpress.com/2007/06/05/oracle-modifications-for-rob-allens-zend-framework-tutorial/#comment-857</link>
		<dc:creator>aapiedra</dc:creator>
		<pubDate>Mon, 09 Nov 2009 02:00:48 +0000</pubDate>
		<guid isPermaLink="false">http://liamgraham.wordpress.com/2007/06/05/oracle-modifications-for-rob-allens-zend-framework-tutorial/#comment-857</guid>
		<description>Hi, I was looking for the same error that Rosendo had, it is:

**************************************************************************

Hi Will:

I did what you say in your example, but i got this error.

Fatal error: Uncaught exception ‘Zend_Db_Statement_Oracle_Exception’ with message ‘942 ORA-00942: la tabla o vista no existe SELECT “albums”.* FROM *”albums”‘ in C:\homesite\Apache2\htdocs\zftutorial\library\Zend\Db\Statement\Oracle.php:244

For yuor help Muchas Gracias.

Rosendo Guzman.
Acapulco, Gro. Mexico.

Comment by Rosendo Guzman — June 5, 2008 @ 6:09 am &#124; Reply 

**********************************************************************

I followed the Diego&#039;s comment and of course, the problem was the getQuoteIdentifierSymbol() function, since Oracle adapter had no it.

So, I add that function in Zend\Db\Adapter\Oracle.php, but with the symbol space, and that fixes the error. :)

******************************************
//..Zend\Db\Adapter\Oracle.php
public function getQuoteIdentifierSymbol()
{
    return &quot; &quot;;
}
******************************************

It works now.
Alejandro</description>
		<content:encoded><![CDATA[<p>Hi, I was looking for the same error that Rosendo had, it is:</p>
<p>**************************************************************************</p>
<p>Hi Will:</p>
<p>I did what you say in your example, but i got this error.</p>
<p>Fatal error: Uncaught exception ‘Zend_Db_Statement_Oracle_Exception’ with message ‘942 ORA-00942: la tabla o vista no existe SELECT “albums”.* FROM *”albums”‘ in C:\homesite\Apache2\htdocs\zftutorial\library\Zend\Db\Statement\Oracle.php:244</p>
<p>For yuor help Muchas Gracias.</p>
<p>Rosendo Guzman.<br />
Acapulco, Gro. Mexico.</p>
<p>Comment by Rosendo Guzman — June 5, 2008 @ 6:09 am | Reply </p>
<p>**********************************************************************</p>
<p>I followed the Diego&#8217;s comment and of course, the problem was the getQuoteIdentifierSymbol() function, since Oracle adapter had no it.</p>
<p>So, I add that function in Zend\Db\Adapter\Oracle.php, but with the symbol space, and that fixes the error. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>******************************************<br />
//..Zend\Db\Adapter\Oracle.php<br />
public function getQuoteIdentifierSymbol()<br />
{<br />
    return &#8221; &#8220;;<br />
}<br />
******************************************</p>
<p>It works now.<br />
Alejandro</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Oracle modifications for Rob Allen&#8217;s Zend Framework Tutorial by links for 2009-11-06 &#124; AndySowards.com :: Professional Web Design, Development, Programming Freelancer, Hacks, Downloads, Math and being a Web 2.0 Hipster?</title>
		<link>http://liamgraham.wordpress.com/2007/06/05/oracle-modifications-for-rob-allens-zend-framework-tutorial/#comment-856</link>
		<dc:creator>links for 2009-11-06 &#124; AndySowards.com :: Professional Web Design, Development, Programming Freelancer, Hacks, Downloads, Math and being a Web 2.0 Hipster?</dc:creator>
		<pubDate>Fri, 06 Nov 2009 15:50:26 +0000</pubDate>
		<guid isPermaLink="false">http://liamgraham.wordpress.com/2007/06/05/oracle-modifications-for-rob-allens-zend-framework-tutorial/#comment-856</guid>
		<description>[...] Oracle modifications for Rob Allen’s Zend Framework Tutorial « William Graham’s blog Good read on using Zend Framework with an Oracle DB &#8211; Typically the standard is MySQL (tags: oracle zend framework tags zendframework zf) [...]</description>
		<content:encoded><![CDATA[<p>[...] Oracle modifications for Rob Allen’s Zend Framework Tutorial « William Graham’s blog Good read on using Zend Framework with an Oracle DB &#8211; Typically the standard is MySQL (tags: oracle zend framework tags zendframework zf) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Altering the way Rails migrations create Oracle sequences by Daniel Berger</title>
		<link>http://liamgraham.wordpress.com/2008/07/01/fixing-rails-bizarre-approach-to-creating-oracle-sequences/#comment-852</link>
		<dc:creator>Daniel Berger</dc:creator>
		<pubDate>Wed, 09 Sep 2009 22:58:30 +0000</pubDate>
		<guid isPermaLink="false">http://liamgraham.wordpress.com/?p=9#comment-852</guid>
		<description>Hi,

Nice post. I would take it one step further and chop the #name to the first 26 characters. That way you avoid the possibility of a sequence name longer than 30 characters.

Regards,

Dan</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Nice post. I would take it one step further and chop the #name to the first 26 characters. That way you avoid the possibility of a sequence name longer than 30 characters.</p>
<p>Regards,</p>
<p>Dan</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Altering the way Rails migrations create Oracle sequences by Dave Smylie</title>
		<link>http://liamgraham.wordpress.com/2008/07/01/fixing-rails-bizarre-approach-to-creating-oracle-sequences/#comment-842</link>
		<dc:creator>Dave Smylie</dc:creator>
		<pubDate>Sun, 08 Mar 2009 20:57:26 +0000</pubDate>
		<guid isPermaLink="false">http://liamgraham.wordpress.com/?p=9#comment-842</guid>
		<description>Cool. 
I had this exact same problem!
Thanks for the code snippet =)

Cheers
Dave Smylie</description>
		<content:encoded><![CDATA[<p>Cool.<br />
I had this exact same problem!<br />
Thanks for the code snippet =)</p>
<p>Cheers<br />
Dave Smylie</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ajax 101: A Simple Example of Using Ajax with the Zend Framework by Regis</title>
		<link>http://liamgraham.wordpress.com/2007/08/06/ajax-101-a-simple-example-of-using-ajax-with-the-zend-framework/#comment-835</link>
		<dc:creator>Regis</dc:creator>
		<pubDate>Thu, 05 Feb 2009 19:13:39 +0000</pubDate>
		<guid isPermaLink="false">http://liamgraham.wordpress.com/2007/08/06/ajax-101-a-simple-example-of-using-ajax-with-the-zend-framework/#comment-835</guid>
		<description>Thanks for the tutorial. Very helpful. Did not work well for me at the beginning, instead of outputting just the action&#039;s returned data, it returned the whole html output... until I realized that this was because I was using Zend_Layout. If you are using it, you need to disable it for the specific action you are using. 
use:
$this-&gt;_helper-&gt;layout()-&gt;disableLayout();</description>
		<content:encoded><![CDATA[<p>Thanks for the tutorial. Very helpful. Did not work well for me at the beginning, instead of outputting just the action&#8217;s returned data, it returned the whole html output&#8230; until I realized that this was because I was using Zend_Layout. If you are using it, you need to disable it for the specific action you are using.<br />
use:<br />
$this-&gt;_helper-&gt;layout()-&gt;disableLayout();</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Oracle modifications for Rob Allen&#8217;s Zend Framework Tutorial by Alain Denis</title>
		<link>http://liamgraham.wordpress.com/2007/06/05/oracle-modifications-for-rob-allens-zend-framework-tutorial/#comment-834</link>
		<dc:creator>Alain Denis</dc:creator>
		<pubDate>Mon, 26 Jan 2009 04:57:58 +0000</pubDate>
		<guid isPermaLink="false">http://liamgraham.wordpress.com/2007/06/05/oracle-modifications-for-rob-allens-zend-framework-tutorial/#comment-834</guid>
		<description>One problem I can&#039;t seem to fix is when I try to &quot;add&quot; an album.
all is fine until It does the redirect, then I get this error:

Fatal error: Uncaught exception &#039;Zend_Db_Table_Row_Exception&#039; with message &#039;Cannot refresh row as parent is missing&#039; in /var/www/localhost/htdocs/DEV/zf-tutorial/library/Zend/Db/Table/Row/Abstract.php:751 [...]

The new row is inserted and committed in the album table. 
I just get this error when it redirects. ?</description>
		<content:encoded><![CDATA[<p>One problem I can&#8217;t seem to fix is when I try to &#8220;add&#8221; an album.<br />
all is fine until It does the redirect, then I get this error:</p>
<p>Fatal error: Uncaught exception &#8216;Zend_Db_Table_Row_Exception&#8217; with message &#8216;Cannot refresh row as parent is missing&#8217; in /var/www/localhost/htdocs/DEV/zf-tutorial/library/Zend/Db/Table/Row/Abstract.php:751 [...]</p>
<p>The new row is inserted and committed in the album table.<br />
I just get this error when it redirects. ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Oracle modifications for Rob Allen&#8217;s Zend Framework Tutorial by Alain Denis</title>
		<link>http://liamgraham.wordpress.com/2007/06/05/oracle-modifications-for-rob-allens-zend-framework-tutorial/#comment-833</link>
		<dc:creator>Alain Denis</dc:creator>
		<pubDate>Sun, 25 Jan 2009 21:02:14 +0000</pubDate>
		<guid isPermaLink="false">http://liamgraham.wordpress.com/2007/06/05/oracle-modifications-for-rob-allens-zend-framework-tutorial/#comment-833</guid>
		<description>I was using a remote Oracle database and not using tnsnames.ora so I did:

$descriptor = &quot;(DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST =myhost123) (PORT = 1521)))(CONNECT_DATA = (SERVICE_NAME=myservicename)))&quot;;	

$db = Zend_Db::factory(&#039;Oracle&#039;, array(&#039;dbname&#039; =&gt; $descriptor, &#039;username&#039; =&gt; &#039;myusername, &#039;password&#039; =&gt; &#039;mypassword&#039;));

It works now.

Alain</description>
		<content:encoded><![CDATA[<p>I was using a remote Oracle database and not using tnsnames.ora so I did:</p>
<p>$descriptor = &#8220;(DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST =myhost123) (PORT = 1521)))(CONNECT_DATA = (SERVICE_NAME=myservicename)))&#8221;;	</p>
<p>$db = Zend_Db::factory(&#8216;Oracle&#8217;, array(&#8216;dbname&#8217; =&gt; $descriptor, &#8216;username&#8217; =&gt; &#8216;myusername, &#8216;password&#8217; =&gt; &#8216;mypassword&#8217;));</p>
<p>It works now.</p>
<p>Alain</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ajax 101: A Simple Example of Using Ajax with the Zend Framework by Iyngaran</title>
		<link>http://liamgraham.wordpress.com/2007/08/06/ajax-101-a-simple-example-of-using-ajax-with-the-zend-framework/#comment-832</link>
		<dc:creator>Iyngaran</dc:creator>
		<pubDate>Fri, 16 Jan 2009 05:27:19 +0000</pubDate>
		<guid isPermaLink="false">http://liamgraham.wordpress.com/2007/08/06/ajax-101-a-simple-example-of-using-ajax-with-the-zend-framework/#comment-832</guid>
		<description>Thanks. Good work. i am using IE latest version, and FF latest version. The style is not working on IE. In ff everything is good.</description>
		<content:encoded><![CDATA[<p>Thanks. Good work. i am using IE latest version, and FF latest version. The style is not working on IE. In ff everything is good.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ajax 101: A Simple Example of Using Ajax with the Zend Framework by Johny</title>
		<link>http://liamgraham.wordpress.com/2007/08/06/ajax-101-a-simple-example-of-using-ajax-with-the-zend-framework/#comment-830</link>
		<dc:creator>Johny</dc:creator>
		<pubDate>Fri, 02 Jan 2009 14:03:53 +0000</pubDate>
		<guid isPermaLink="false">http://liamgraham.wordpress.com/2007/08/06/ajax-101-a-simple-example-of-using-ajax-with-the-zend-framework/#comment-830</guid>
		<description>Hi, I found the problem but i don&#039;t what will be the solution, the issue is because of Zend_Layout::startMvc(array(&#039;layoutPath&#039;=&gt;&#039;../application/layouts&#039;));
this , it return the whole html layout.</description>
		<content:encoded><![CDATA[<p>Hi, I found the problem but i don&#8217;t what will be the solution, the issue is because of Zend_Layout::startMvc(array(&#8216;layoutPath&#8217;=&gt;&#8217;../application/layouts&#8217;));<br />
this , it return the whole html layout.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ajax 101: A Simple Example of Using Ajax with the Zend Framework by Johny</title>
		<link>http://liamgraham.wordpress.com/2007/08/06/ajax-101-a-simple-example-of-using-ajax-with-the-zend-framework/#comment-829</link>
		<dc:creator>Johny</dc:creator>
		<pubDate>Fri, 02 Jan 2009 13:48:05 +0000</pubDate>
		<guid isPermaLink="false">http://liamgraham.wordpress.com/2007/08/06/ajax-101-a-simple-example-of-using-ajax-with-the-zend-framework/#comment-829</guid>
		<description>Hi, I am trying to use your code, however when i alert the transport.responseText is content the whole html . body etc.
It suppose to be content only the div/span area only. 
below is my code:
inside 

function getDataAction()
{
$this-&gt;_helper-&gt;viewRenderer-&gt;setNoRender();
php process ......
echo $content; //( this content html table block)
}
 and when page is displayed the whole html page is repeat, can anyone tell us why its happen.

if I am using without the function getDataAction() and calling seperate .php file its working fine.

Thanks
Johny</description>
		<content:encoded><![CDATA[<p>Hi, I am trying to use your code, however when i alert the transport.responseText is content the whole html . body etc.<br />
It suppose to be content only the div/span area only.<br />
below is my code:<br />
inside </p>
<p>function getDataAction()<br />
{<br />
$this-&gt;_helper-&gt;viewRenderer-&gt;setNoRender();<br />
php process &#8230;&#8230;<br />
echo $content; //( this content html table block)<br />
}<br />
 and when page is displayed the whole html page is repeat, can anyone tell us why its happen.</p>
<p>if I am using without the function getDataAction() and calling seperate .php file its working fine.</p>
<p>Thanks<br />
Johny</p>
]]></content:encoded>
	</item>
</channel>
</rss>
