<?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: Doctrine_Connection_Exception : PDO Connection Error: SQLSTATE[] (solved!)</title>
	<atom:link href="http://ingol.nl/blog/2009/10/12/doctrine_connection_exception-pdo-connection-error-sqlstate/feed/" rel="self" type="application/rss+xml" />
	<link>http://ingol.nl/blog/2009/10/12/doctrine_connection_exception-pdo-connection-error-sqlstate/</link>
	<description></description>
	<lastBuildDate>Fri, 03 Sep 2010 21:51:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Doctrine and Oracle under Windows &#124; Driebit Symfony Blog</title>
		<link>http://ingol.nl/blog/2009/10/12/doctrine_connection_exception-pdo-connection-error-sqlstate/comment-page-1/#comment-279</link>
		<dc:creator>Doctrine and Oracle under Windows &#124; Driebit Symfony Blog</dc:creator>
		<pubDate>Fri, 03 Sep 2010 16:12:44 +0000</pubDate>
		<guid isPermaLink="false">http://ingol.nl/blog/?p=246#comment-279</guid>
		<description>[...] i did something wrong myself, or that my configuration was faulty etc. etc. Until i stumbled upon this post . Many thanks for that. This put me on the right track [...]</description>
		<content:encoded><![CDATA[<p>[...] i did something wrong myself, or that my configuration was faulty etc. etc. Until i stumbled upon this post . Many thanks for that. This put me on the right track [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nils</title>
		<link>http://ingol.nl/blog/2009/10/12/doctrine_connection_exception-pdo-connection-error-sqlstate/comment-page-1/#comment-8</link>
		<dc:creator>Nils</dc:creator>
		<pubDate>Wed, 14 Oct 2009 13:48:26 +0000</pubDate>
		<guid isPermaLink="false">http://ingol.nl/blog/?p=246#comment-8</guid>
		<description>Thanks for the further information, I hope that I can work on this problem on friday.
I will try out your workarounds and then get back to you with hopefully positive feedback ;-)</description>
		<content:encoded><![CDATA[<p>Thanks for the further information, I hope that I can work on this problem on friday.<br />
I will try out your workarounds and then get back to you with hopefully positive feedback ;-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Reboot</title>
		<link>http://ingol.nl/blog/2009/10/12/doctrine_connection_exception-pdo-connection-error-sqlstate/comment-page-1/#comment-7</link>
		<dc:creator>Reboot</dc:creator>
		<pubDate>Wed, 14 Oct 2009 09:40:57 +0000</pubDate>
		<guid isPermaLink="false">http://ingol.nl/blog/?p=246#comment-7</guid>
		<description>Under (severe) stress, we now sometimes get an &quot;ORA-12519: TNS:no appropriate service handler found&quot; which is a different connection error type but one which can probably be solved easier. Hence the issue in the post is solved, don&#039;t use PDO-Oracle and fix Doctrine!!

&lt;em&gt;ORA-12519: TNS:no appropriate service handler found tips
&lt;a href=&quot;http://www.dba-oracle.com/sf_ora_12519_tns_no_appropriate_service_handler_found.htm&quot; rel=&quot;nofollow&quot;&gt;http://www.dba-oracle.com/sf_ora_12519_tns_no_appropriate_service_handler_found.htm&lt;/a&gt;&lt;/em&gt;</description>
		<content:encoded><![CDATA[<p>Under (severe) stress, we now sometimes get an &#8220;ORA-12519: TNS:no appropriate service handler found&#8221; which is a different connection error type but one which can probably be solved easier. Hence the issue in the post is solved, don&#8217;t use PDO-Oracle and fix Doctrine!!</p>
<p><em>ORA-12519: TNS:no appropriate service handler found tips<br />
<a href="http://www.dba-oracle.com/sf_ora_12519_tns_no_appropriate_service_handler_found.htm" rel="nofollow">http://www.dba-oracle.com/sf_ora_12519_tns_no_appropriate_service_handler_found.htm</a></em></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Reboot</title>
		<link>http://ingol.nl/blog/2009/10/12/doctrine_connection_exception-pdo-connection-error-sqlstate/comment-page-1/#comment-6</link>
		<dc:creator>Reboot</dc:creator>
		<pubDate>Wed, 14 Oct 2009 08:16:44 +0000</pubDate>
		<guid isPermaLink="false">http://ingol.nl/blog/?p=246#comment-6</guid>
		<description>First try seems successful, although it&#039;s not stress tested yet. We had to change a Doctrine file though, parts of the connection settings were not passed properly. We now have a hard-coded fix in place:

in the class Doctrine_Adapter_Oracle (file: Oracle.php) line 105 we added
&lt;em&gt;$this-&gt;config[&#039;dbname&#039;] = &#039;(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=host.nl)(PORT=1521)))(CONNECT_DATA=(SID=sid)))&#039;;
$this-&gt;config[&#039;charset&#039;] = &#039;AL32UTF8&#039;;&lt;/em&gt;

Although the fix is not definitive yet (hard to reproduce the issue because of it&#039;s randomness), it did solve another issue we had (thus Oracle PDO == Experimental == Trouble?).</description>
		<content:encoded><![CDATA[<p>First try seems successful, although it&#8217;s not stress tested yet. We had to change a Doctrine file though, parts of the connection settings were not passed properly. We now have a hard-coded fix in place:</p>
<p>in the class Doctrine_Adapter_Oracle (file: Oracle.php) line 105 we added<br />
<em>$this->config['dbname'] = &#8216;(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=host.nl)(PORT=1521)))(CONNECT_DATA=(SID=sid)))&#8217;;<br />
$this->config['charset'] = &#8216;AL32UTF8&#8242;;</em></p>
<p>Although the fix is not definitive yet (hard to reproduce the issue because of it&#8217;s randomness), it did solve another issue we had (thus Oracle PDO == Experimental == Trouble?).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Reboot</title>
		<link>http://ingol.nl/blog/2009/10/12/doctrine_connection_exception-pdo-connection-error-sqlstate/comment-page-1/#comment-5</link>
		<dc:creator>Reboot</dc:creator>
		<pubDate>Tue, 13 Oct 2009 18:42:06 +0000</pubDate>
		<guid isPermaLink="false">http://ingol.nl/blog/?p=246#comment-5</guid>
		<description>I don&#039;t know yet, had the day off because it&#039;s my son&#039;s birthday, asked a colleague of mine to check it but he did not get around to it *sighs*. I&#039;m pretty anxious to know if it works though. Cross your fingers. If your try failed, I&#039;m afraid my change to the normal Oracle driver will fail too. Thus using the PDO or normal Oracle driver doesn&#039;t matter ...

At least it shouldn&#039;t report the &quot;PDO Connection Error&quot; part because we&#039;re not using PDO?!?!</description>
		<content:encoded><![CDATA[<p>I don&#8217;t know yet, had the day off because it&#8217;s my son&#8217;s birthday, asked a colleague of mine to check it but he did not get around to it *sighs*. I&#8217;m pretty anxious to know if it works though. Cross your fingers. If your try failed, I&#8217;m afraid my change to the normal Oracle driver will fail too. Thus using the PDO or normal Oracle driver doesn&#8217;t matter &#8230;</p>
<p>At least it shouldn&#8217;t report the &#8220;PDO Connection Error&#8221; part because we&#8217;re not using PDO?!?!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nils</title>
		<link>http://ingol.nl/blog/2009/10/12/doctrine_connection_exception-pdo-connection-error-sqlstate/comment-page-1/#comment-4</link>
		<dc:creator>Nils</dc:creator>
		<pubDate>Tue, 13 Oct 2009 08:29:10 +0000</pubDate>
		<guid isPermaLink="false">http://ingol.nl/blog/?p=246#comment-4</guid>
		<description>hi,

so do you have a working solution?
I am using the symfony frameworking with doctrine and i am getting the same error.
Using &quot;oracle&quot; instead of &quot;oci&quot; in the connection string is not working.

There is not very much about that on google. ;-)</description>
		<content:encoded><![CDATA[<p>hi,</p>
<p>so do you have a working solution?<br />
I am using the symfony frameworking with doctrine and i am getting the same error.<br />
Using &#8220;oracle&#8221; instead of &#8220;oci&#8221; in the connection string is not working.</p>
<p>There is not very much about that on google. ;-)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
