<?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>All Night Diner &#187; SQLite</title>
	<atom:link href="http://micropipes.com/blog/tag/sqlite/feed/" rel="self" type="application/rss+xml" />
	<link>http://micropipes.com/blog</link>
	<description>because at 3am anything sounds good</description>
	<lastBuildDate>Mon, 03 May 2010 17:34:44 +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>SQLite more laid back than the D-O-double-G</title>
		<link>http://micropipes.com/blog/2008/11/10/sqlite-more-laid-back-than-the-d-o-double-g/</link>
		<comments>http://micropipes.com/blog/2008/11/10/sqlite-more-laid-back-than-the-d-o-double-g/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 00:18:44 +0000</pubDate>
		<dc:creator>Wil Clouser</dc:creator>
				<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[o rly]]></category>
		<category><![CDATA[SQLite]]></category>

		<guid isPermaLink="false">http://micropipes.com/blog/?p=61</guid>
		<description><![CDATA[SQLite only supports a simple set of data types and the only one that really matters is &#8220;INTEGER PRIMARY KEY&#8221; so you can have it auto-increment.  In fact, by default, I can declare the columns as anything I want and it doesn&#8217;t even throw a warning.

sqlite> CREATE TABLE t2(c1 wtf, c2 yomama);
sqlite> INSERT INTO [...]]]></description>
			<content:encoded><![CDATA[<p>SQLite only supports a <a href="http://www.sqlite.org/datatype3.html">simple set of data types</a> and the only one that really matters is &#8220;INTEGER PRIMARY KEY&#8221; so you can have it auto-increment.  In fact, by default, I can declare the columns as anything I want and it doesn&#8217;t even throw a warning.</p>
<pre><code>
sqlite> CREATE TABLE t2(c1 wtf, c2 yomama);
sqlite> INSERT INTO t2 VALUES(1, 'blah');
sqlite> SELECT * FROM t2;
1, blah
</code></pre>
<p>This is all documented and explained so I can&#8217;t complain to much but it&#8217;s still an interesting concept.</p>
]]></content:encoded>
			<wfw:commentRss>http://micropipes.com/blog/2008/11/10/sqlite-more-laid-back-than-the-d-o-double-g/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
