<?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>Note to Self &#187; database</title>
	<atom:link href="http://notetoself.vrensk.com/tag/database/feed/" rel="self" type="application/rss+xml" />
	<link>http://notetoself.vrensk.com</link>
	<description>lest I forget</description>
	<lastBuildDate>Fri, 23 Feb 2018 12:54:38 +0000</lastBuildDate>
	<language>sv-SE</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>SQLite is dynamically typed</title>
		<link>http://notetoself.vrensk.com/2009/08/sqlite-is-dynamically-typed/</link>
		<comments>http://notetoself.vrensk.com/2009/08/sqlite-is-dynamically-typed/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 12:54:08 +0000</pubDate>
		<dc:creator>David Vrensk</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[database]]></category>

		<guid isPermaLink="false">http://notetoself.vrensk.com/?p=59</guid>
		<description><![CDATA[SQLite3 is truly dynamically typed. To a fault: sqlite&#62; select count(*) from posts where external_id = 199252; 0 sqlite&#62; select count(*) from posts where external_id = '199252'; 1 sqlite&#62; select count(*) from posts where external_id = 199793; 1 sqlite&#62; select count(*) from posts where external_id = '199793'; 0 One day I suppose I will find [...]]]></description>
				<content:encoded><![CDATA[<p>SQLite3 is truly dynamically typed.  To a fault:</p>
<pre><code>sqlite&gt; select count(*) from posts where external_id = 199252;
0
sqlite&gt; select count(*) from posts where external_id = '199252';
1
sqlite&gt; select count(*) from posts where external_id = 199793;
1
sqlite&gt; select count(*) from posts where external_id = '199793';
0
</code></pre>
<p>One day I suppose I will find it useful to store different data types in the same column, and without implicit conversion.  I look forward to that day.  Right now, I will have to spend a few hours cleaning up the mess that this caused.</p>
]]></content:encoded>
			<wfw:commentRss>http://notetoself.vrensk.com/2009/08/sqlite-is-dynamically-typed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
