<?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: Python 2.5 and Generic Database Connection Utilities</title>
	<atom:link href="http://halfcooked.com/blog/2006/09/20/python-25-and-generic-database-connection-utilities/feed/" rel="self" type="application/rss+xml" />
	<link>http://halfcooked.com/blog/2006/09/20/python-25-and-generic-database-connection-utilities/</link>
	<description>Wherein I write some stuff  that you may like to read. Or not, its up to you really.</description>
	<lastBuildDate>Fri, 11 Nov 2011 18:30:53 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Alan Green</title>
		<link>http://halfcooked.com/blog/2006/09/20/python-25-and-generic-database-connection-utilities/comment-page-1/#comment-630</link>
		<dc:creator>Alan Green</dc:creator>
		<pubDate>Wed, 20 Sep 2006 20:24:20 +0000</pubDate>
		<guid isPermaLink="false">http://halfcooked.com/blog/2006/09/20/python-25-and-generic-database-connection-utilities/#comment-630</guid>
		<description>Neat.</description>
		<content:encoded><![CDATA[<p>Neat.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian Bicking</title>
		<link>http://halfcooked.com/blog/2006/09/20/python-25-and-generic-database-connection-utilities/comment-page-1/#comment-629</link>
		<dc:creator>Ian Bicking</dc:creator>
		<pubDate>Wed, 20 Sep 2006 17:55:12 +0000</pubDate>
		<guid isPermaLink="false">http://halfcooked.com/blog/2006/09/20/python-25-and-generic-database-connection-utilities/#comment-629</guid>
		<description>Personally, I&#039;d be quite interested in seeing all the database systems converge on one format and loading mechanism, maybe a common package implementing it.  Maybe discuss on DB-SIG?</description>
		<content:encoded><![CDATA[<p>Personally, I&#8217;d be quite interested in seeing all the database systems converge on one format and loading mechanism, maybe a common package implementing it.  Maybe discuss on DB-SIG?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fredrik</title>
		<link>http://halfcooked.com/blog/2006/09/20/python-25-and-generic-database-connection-utilities/comment-page-1/#comment-628</link>
		<dc:creator>Fredrik</dc:creator>
		<pubDate>Wed, 20 Sep 2006 13:03:28 +0000</pubDate>
		<guid isPermaLink="false">http://halfcooked.com/blog/2006/09/20/python-25-and-generic-database-connection-utilities/#comment-628</guid>
		<description>Standard library! ;-)

(well, something similar should be added to the standard library, at least.  where the &quot;schema&quot; part is used to locate the driver, and driver-specific code handles the rest of the &quot;uri&quot;)</description>
		<content:encoded><![CDATA[<p>Standard library! <img src='http://halfcooked.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>(well, something similar should be added to the standard library, at least.  where the &#8220;schema&#8221; part is used to locate the driver, and driver-specific code handles the rest of the &#8220;uri&#8221;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martijn Pieters</title>
		<link>http://halfcooked.com/blog/2006/09/20/python-25-and-generic-database-connection-utilities/comment-page-1/#comment-627</link>
		<dc:creator>Martijn Pieters</dc:creator>
		<pubDate>Wed, 20 Sep 2006 12:18:27 +0000</pubDate>
		<guid isPermaLink="false">http://halfcooked.com/blog/2006/09/20/python-25-and-generic-database-connection-utilities/#comment-627</guid>
		<description>I do:

try:
    import sqlite3 # Python 2.5 and up
except ImportError:
    from pysqlite2 import dbapi2 as sqlite3

in similar &#039;central&#039; db access code (I create a connection wrapper that inits the tables if needed, and adds convenience methods and abstractions). See:

  http://svn.plone.org/view/collective/linktally/trunk/src/linktally/db.py?rev=25691&amp;view=auto</description>
		<content:encoded><![CDATA[<p>I do:</p>
<p>try:<br />
    import sqlite3 # Python 2.5 and up<br />
except ImportError:<br />
    from pysqlite2 import dbapi2 as sqlite3</p>
<p>in similar &#8216;central&#8217; db access code (I create a connection wrapper that inits the tables if needed, and adds convenience methods and abstractions). See:</p>
<p>  <a href="http://svn.plone.org/view/collective/linktally/trunk/src/linktally/db.py?rev=25691&#038;view=auto" rel="nofollow">http://svn.plone.org/view/collective/linktally/trunk/src/linktally/db.py?rev=25691&#038;view=auto</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard Jones</title>
		<link>http://halfcooked.com/blog/2006/09/20/python-25-and-generic-database-connection-utilities/comment-page-1/#comment-626</link>
		<dc:creator>Richard Jones</dc:creator>
		<pubDate>Wed, 20 Sep 2006 09:05:47 +0000</pubDate>
		<guid isPermaLink="false">http://halfcooked.com/blog/2006/09/20/python-25-and-generic-database-connection-utilities/#comment-626</guid>
		<description>Lightning talk :)</description>
		<content:encoded><![CDATA[<p>Lightning talk <img src='http://halfcooked.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

