<?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>Django foo &#187; sqlite</title>
	<atom:link href="http://www.djangofoo.com/tag/sqlite/feed" rel="self" type="application/rss+xml" />
	<link>http://www.djangofoo.com</link>
	<description>Django Tips and Tweaks</description>
	<lastBuildDate>Wed, 18 Aug 2010 09:38:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>SQLite DATABASE_ENGINE on Windows</title>
		<link>http://www.djangofoo.com/54/sqlite-windows-database_engine</link>
		<comments>http://www.djangofoo.com/54/sqlite-windows-database_engine#comments</comments>
		<pubDate>Thu, 28 Jan 2010 11:52:55 +0000</pubDate>
		<dc:creator>Davo</dc:creator>
				<category><![CDATA[Django]]></category>
		<category><![CDATA[database_engine]]></category>
		<category><![CDATA[sqlite]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.djangofoo.com/?p=54</guid>
		<description><![CDATA[I was having issues to use SQLite on Windows based machines. The database was correctly creating with managy.py syncdb but I was not able to use it. A quick fix was to edit the settings.py and specify a FULL path for the database. DATABASE_ENGINE = 'sqlite3' DATABASE_NAME = 'C:/path/to/thedb' # instead of 'thedb' Hope this [...]]]></description>
			<content:encoded><![CDATA[<p>I was having issues to use SQLite on Windows based machines.<br />
The database was correctly creating with <strong>managy.py syncdb</strong> but I was not able to use it.<br />
A quick fix was to edit the <strong>settings.py</strong> and specify a FULL path for the database.</p>
<pre class="brush: python">
DATABASE_ENGINE = 'sqlite3'
DATABASE_NAME = 'C:/path/to/thedb' # instead of 'thedb'
</pre>
<p>Hope this will solve your issue as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.djangofoo.com/54/sqlite-windows-database_engine/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

