<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Five Minutes &#187; PEAR</title>
	<atom:link href="http://xn--9bi.net/category/pear/feed/" rel="self" type="application/rss+xml" />
	<link>http://xn--9bi.net</link>
	<description>Really, it's all you need</description>
	<lastBuildDate>Fri, 19 Feb 2010 09:28:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>PEAR DB 1.7.14RC1 Released</title>
		<link>http://xn--9bi.net/2007/11/28/pear-db-1714rc1-released/</link>
		<comments>http://xn--9bi.net/2007/11/28/pear-db-1714rc1-released/#comments</comments>
		<pubDate>Wed, 28 Nov 2007 02:34:39 +0000</pubDate>
		<dc:creator>Adam Harvey</dc:creator>
				<category><![CDATA[PEAR]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tech Geekery]]></category>

		<guid isPermaLink="false">http://xn--9bi.net/2007/11/28/pear-db-1714rc1-released/</guid>
		<description><![CDATA[
I&#8217;ve pushed out a beta release of PEAR DB versioned 1.7.14RC1 with a few fixes for issues reported since 1.7.13. Nothing in there is hugely urgent or high-risk, but I&#8217;ve made it a beta rather than a stable release due to the fact that I&#8217;m still a few thousand kilometres from my testing setup, which [...]]]></description>
			<content:encoded><![CDATA[<p>
I&#8217;ve pushed out a beta release of <a href="http://pear.php.net/DB">PEAR DB</a> versioned 1.7.14RC1 with a few fixes for issues reported since 1.7.13. Nothing in there is hugely urgent or high-risk, but I&#8217;ve made it a beta rather than a stable release due to the fact that I&#8217;m still a few thousand kilometres from my testing setup, which means that I&#8217;ve only been able to test against the databases I have to hand on my laptop &#8212; MySQL, PostgreSQL and SQLite.
</p>
<p>
All being well, I&#8217;m looking to get 1.7.14 final out around Monday (along with an Informix fix that I can&#8217;t work on without my Informix testing VM). Please feel free to test this release and report any issues.</p>
]]></content:encoded>
			<wfw:commentRss>http://xn--9bi.net/2007/11/28/pear-db-1714rc1-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>$pear-&gt;list</title>
		<link>http://xn--9bi.net/2007/10/13/pear-list/</link>
		<comments>http://xn--9bi.net/2007/10/13/pear-list/#comments</comments>
		<pubDate>Sat, 13 Oct 2007 03:05:40 +0000</pubDate>
		<dc:creator>Adam Harvey</dc:creator>
				<category><![CDATA[PEAR]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tech Geekery]]></category>

		<guid isPermaLink="false">http://xn--9bi.net/2007/10/13/pear-list/</guid>
		<description><![CDATA[
I&#8217;ve seen three people ask a variation of how can I get a list of installed PEAR packages from within my PHP script in the last few weeks on IRC, and two just in the last day. Because I&#8217;m a helpful sort, here&#8217;s a little morsel of code that will do just that:


include 'PEAR/Registry.php';

$reg = [...]]]></description>
			<content:encoded><![CDATA[<p>
I&#8217;ve seen three people ask a variation of <q>how can I get a list of installed PEAR packages from within my PHP script</q> in the last few weeks on IRC, and two just in the last day. Because I&#8217;m a helpful sort, here&#8217;s a little morsel of code that will do just that:
</p>
<pre class="brush: php;">
include 'PEAR/Registry.php';

$reg = new PEAR_Registry;
foreach ($reg-&gt;listPackages() as $package) {
    print &quot;$package\n&quot;;
}
</pre>
<p>
This should work with pretty much any version of PEAR.
</p>
<p>
(Update: <a href="http://blogs.linux.ie/kenguest">Ken</a> has a nifty bit of code in the comments to <a href="http://xn--9bi.net/2007/10/13/pear-list/#comment-13920">check for a specific installed version of a package</a>.)</p>
]]></content:encoded>
			<wfw:commentRss>http://xn--9bi.net/2007/10/13/pear-list/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>DB 1.7.13 Released</title>
		<link>http://xn--9bi.net/2007/09/22/db-1713-released/</link>
		<comments>http://xn--9bi.net/2007/09/22/db-1713-released/#comments</comments>
		<pubDate>Fri, 21 Sep 2007 16:23:08 +0000</pubDate>
		<dc:creator>Adam Harvey</dc:creator>
				<category><![CDATA[PEAR]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tech Geekery]]></category>

		<guid isPermaLink="false">http://xn--9bi.net/2007/09/22/db-1713-released/</guid>
		<description><![CDATA[
I&#8217;ve just released version 1.7.13 of PEAR&#8217;s DB package. This includes a couple of minor fixes for the MySQL, MySQLi and SQLite drivers, none of which I&#8217;d class as particularly urgent. Grab it at your leisure from a PEAR server near you.


Important note: It&#8217;s been this way for a couple of years now, but I&#8217;d [...]]]></description>
			<content:encoded><![CDATA[<p>
I&#8217;ve just released <a href="http://pear.php.net/package/DB/download/1.7.13">version 1.7.13</a> of <a href="http://pear.php.net/DB">PEAR&#8217;s DB package</a>. This includes a couple of minor fixes for the MySQL, MySQLi and SQLite drivers, none of which I&#8217;d class as particularly urgent. Grab it at your leisure from a PEAR server near you.
</p>
<p>
<strong>Important note</strong>: It&#8217;s been this way for a couple of years now, but I&#8217;d again like to reiterate that DB is <strong>deprecated</strong> in favour of <a href="http://pear.php.net/MDB2">MDB2</a>, which is pretty DB-like if you load <a href="http://pear.php.net/package/MDB2/docs/latest/MDB2/MDB2_Extended.html">the Extended module</a>. If you haven&#8217;t already made plans to migrate your programs depending on DB to MDB2, now might be a good time to start.
</p>
<p>
Particularly in light of <a href="http://article.gmane.org/gmane.comp.php.pear.devel/43555">this post to PEAR-DEV</a>, which I predict is going to create considerably more e-mail for me to sort through. Short version: I&#8217;m <em>considering</em> setting an end-of-life date for DB at 8/8/8, the same as PHP4&#8217;s end-of-security-fix-life date. If you want to address the open questions in that post, feel free to reply to PEAR-DEV or my e-mail directly. My e-mail address is on the sidebar both on my blog home page and <a href="http://xn--9bi.net/about-me">my about page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://xn--9bi.net/2007/09/22/db-1713-released/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>PEAR DB 1.7.12</title>
		<link>http://xn--9bi.net/2007/06/29/pear-db-1712/</link>
		<comments>http://xn--9bi.net/2007/06/29/pear-db-1712/#comments</comments>
		<pubDate>Fri, 29 Jun 2007 13:24:13 +0000</pubDate>
		<dc:creator>Adam Harvey</dc:creator>
				<category><![CDATA[PEAR]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tech Geekery]]></category>

		<guid isPermaLink="false">http://xn--9bi.net/2007/06/29/pear-db-1712/</guid>
		<description><![CDATA[
It&#8217;s about a month later than I originally planned, but PEAR DB 1.7.12 has just been uploaded to a PEAR server near you. If you&#8217;re using DB with PostgreSQL and PHP 5.2.x, you&#8217;ll want this version, due to a backward compatibility break in PHP 5.2&#8217;s pg_escape_string. Otherwise, there&#8217;s not too much that&#8217;s exciting, although hopefully [...]]]></description>
			<content:encoded><![CDATA[<p>
It&#8217;s about a month later than I originally planned, but <a href="http://pear.php.net/DB">PEAR DB</a> 1.7.12 has just been uploaded to a PEAR server near you. If you&#8217;re using DB with PostgreSQL and PHP 5.2.x, you&#8217;ll want this version, due to a backward compatibility break in PHP 5.2&#8217;s pg_escape_string. Otherwise, there&#8217;s not too much that&#8217;s exciting, although hopefully the Fedora Extras packaging guys will forgive me for screwing up the test suite slightly in 1.7.11!
</p>
<p>
Note that DB will no longer install with PEAR installers earlier than PEAR 1.4.0, as it now uses the newer package.xml format introduced in that version. That being said, if you&#8217;re still using PEAR 1.3, you <em>really</em> should upgrade <a href="http://pear.php.net/news/package.xml.1.0.php">per the instructions on the PEAR web site</a>, since it&#8217;s no longer supported and all.
</p>
<p>
As per my usual plan, I&#8217;ll release 1.7.13 at the end of July (hopefully) if any bugs are reported.</p>
]]></content:encoded>
			<wfw:commentRss>http://xn--9bi.net/2007/06/29/pear-db-1712/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.041 seconds -->
