<?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: Reusing an existing database connection with MDB2</title>
	<atom:link href="http://www.phpied.com/reusing-an-existing-database-connection-with-mdb2/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.phpied.com/reusing-an-existing-database-connection-with-mdb2/</link>
	<description>Stoyan&#039;s blog about &#60;a href=&#34;/category/xhtml&#34; class=&#34;tag-minor&#34;&#62;(x)html(5)&#60;/a&#62;, &#60;a href=&#34;/category/ajax&#34; class=&#34;tag-major&#34;&#62;ajax&#60;/a&#62;, &#60;a href=&#34;/category/bookmarklets&#34; class=&#34;tag-major&#34;&#62;bookmarklets&#60;/a&#62;, &#60;a href=&#34;/category/browsers&#34; class=&#34;tag-minor&#34;&#62;browsers&#60;/a&#62;, &#60;a href=&#34;/category/css&#34; class=&#34;tag-normal&#34;&#62;css&#60;/a&#62;, &#60;a href=&#34;/category/firebug&#34; class=&#34;tag-minor&#34;&#62;firebug&#60;/a&#62;, &#60;a href=&#34;/category/javascript&#34; class=&#34;tag-numero-uno&#34;&#62;javascript&#60;/a&#62;, &#60;a href=&#34;/category/json&#34; class=&#34;tag-normal&#34;&#62;json&#60;/a&#62;, &#60;a href=&#34;/category/mdb2&#34; class=&#34;tag-minor&#34;&#62;mdb2&#60;/a&#62;, &#60;a href=&#34;/category/mysql&#34; class=&#34;tag-normal&#34;&#62;mysql&#60;/a&#62;, &#60;a href=&#34;/category/pear&#34; class=&#34;tag-numero-uno&#34;&#62;pear&#60;/a&#62;, &#60;a href=&#34;/category/performance&#34; class=&#34;tag-major&#34;&#62;performance&#60;/a&#62;, &#60;a href=&#34;/category/php&#34; class=&#34;tag-numero-uno&#34;&#62;php&#60;/a&#62;, &#60;a href=&#34;/category/phpbb&#34; class=&#34;tag-major&#34;&#62;phpbb&#60;/a&#62;, &#60;a href=&#34;/category/tools&#34; class=&#34;tag-normal&#34;&#62;tools&#60;/a&#62;, &#60;a href=&#34;/category/yslow&#34; class=&#34;tag-minor&#34;&#62;yslow&#60;/a&#62;, &#60;a href=&#34;/category/yui&#34; class=&#34;tag-normal&#34;&#62;yui&#60;/a&#62;, &#60;a href=&#34;/category/writing&#34; class=&#34;tag-minor&#34;&#62;writing&#60;/a&#62;, &#60;a href=&#34;/category/music&#34; class=&#34;tag-major&#34;&#62;music&#60;/a&#62;,... &#60;a href=&#34;/category/life-and-everything&#34; class=&#34;tag-normal&#34;&#62;life and everything&#60;/a&#62;.</description>
	<lastBuildDate>Sun, 12 Feb 2012 12:01:59 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
	<item>
		<title>By: Sam</title>
		<link>http://www.phpied.com/reusing-an-existing-database-connection-with-mdb2/#comment-48693</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Wed, 10 Jan 2007 00:33:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpied.com/reusing-an-existing-database-connection-with-mdb2/#comment-48693</guid>
		<description>Thanks for that, I am now using the non-persistent connection solution. I had to alter the pre-existing connection call to use the same string as MDB2 but it works well. For your information, pg_connect() also reuses an existing connection if the connection string is exactly the same.</description>
		<content:encoded><![CDATA[<p>Thanks for that, I am now using the non-persistent connection solution. I had to alter the pre-existing connection call to use the same string as MDB2 but it works well. For your information, pg_connect() also reuses an existing connection if the connection string is exactly the same.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PHPDeveloper.org</title>
		<link>http://www.phpied.com/reusing-an-existing-database-connection-with-mdb2/#comment-48626</link>
		<dc:creator>PHPDeveloper.org</dc:creator>
		<pubDate>Mon, 08 Jan 2007 14:08:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpied.com/reusing-an-existing-database-connection-with-mdb2/#comment-48626</guid>
		<description>&lt;strong&gt;Stoyan Stefanov&#039;s Blog: Reusing an existing database connection with MDB2...&lt;/strong&gt;

...</description>
		<content:encoded><![CDATA[<p><strong>Stoyan Stefanov&#8217;s Blog: Reusing an existing database connection with MDB2&#8230;</strong></p>
<p>&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lukas Smith</title>
		<link>http://www.phpied.com/reusing-an-existing-database-connection-with-mdb2/#comment-48418</link>
		<dc:creator>Lukas Smith</dc:creator>
		<pubDate>Fri, 05 Jan 2007 21:39:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpied.com/reusing-an-existing-database-connection-with-mdb2/#comment-48418</guid>
		<description>Manually assigning a connection is not exactly support at this point. MDB2 actually does a few things during the connection procedure that are necessary. Depending on your settings it may make changes to the connection session or read some information from the database to determine how and if to emulate certain behaviors. With a bit of refactoring it might be possible to provide a way to provide a connection resource to MDB2 to use instead of creating a new one. File a feature request if you run into problems with the proposed solution.</description>
		<content:encoded><![CDATA[<p>Manually assigning a connection is not exactly support at this point. MDB2 actually does a few things during the connection procedure that are necessary. Depending on your settings it may make changes to the connection session or read some information from the database to determine how and if to emulate certain behaviors. With a bit of refactoring it might be possible to provide a way to provide a connection resource to MDB2 to use instead of creating a new one. File a feature request if you run into problems with the proposed solution.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

