<?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>/home/shakir &#187; database</title>
	<atom:link href="http://www.mohdshakir.net/tag/database/feed" rel="self" type="application/rss+xml" />
	<link>http://www.mohdshakir.net</link>
	<description>My Piece Of The Web</description>
	<lastBuildDate>Fri, 16 Jul 2010 15:45:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>&#8220;&#8216;BoundMetaData&#8217; is not defined&#8221; error in SQLAlchemy</title>
		<link>http://www.mohdshakir.net/2007/12/13/boundmetadata-is-not-defined</link>
		<comments>http://www.mohdshakir.net/2007/12/13/boundmetadata-is-not-defined#comments</comments>
		<pubDate>Thu, 13 Dec 2007 07:24:49 +0000</pubDate>
		<dc:creator>shakir</dc:creator>
				<category><![CDATA[Information Insemination]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[sqlalchemy]]></category>

		<guid isPermaLink="false">http://www.mohdshakir.net/2007/12/13/boundmetadata-is-not-defined</guid>
		<description><![CDATA[I get this error when creating a BoundMetaData object in SQLAlchemy 0.3.10. The fix is to just use MetaData instead of&#160; BoundMetaData. BoundMetaData is deprecated and replaced with MetaData Example code: from sqlalchemy import * db = create_engine('sqlite:///test.db') metadata = MetaData(db) """ Continue with the rest of your Python code """]]></description>
			<content:encoded><![CDATA[<p>I get this error when creating a BoundMetaData object in SQLAlchemy 0.3.10. The fix is to just use MetaData instead of&nbsp; BoundMetaData. BoundMetaData is deprecated and replaced with MetaData</p>
<p>Example code:</p>
<pre lang="python" line="1">
from sqlalchemy import *

db = create_engine('sqlite:///test.db')
metadata = MetaData(db)

"""
  Continue with the rest of your Python code
"""
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.mohdshakir.net/2007/12/13/boundmetadata-is-not-defined/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
