<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: SQLite &#8211; the ultimate data-smithing tool!</title>
	<atom:link href="http://blog.gobansaor.com/2008/04/26/sqlite-the-ultimate-data-smithing-tool/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.gobansaor.com/2008/04/26/sqlite-the-ultimate-data-smithing-tool/</link>
	<description>A country datasmith.</description>
	<lastBuildDate>Sat, 10 Jul 2010 14:04:14 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: code43</title>
		<link>http://blog.gobansaor.com/2008/04/26/sqlite-the-ultimate-data-smithing-tool/#comment-5584</link>
		<dc:creator>code43</dc:creator>
		<pubDate>Sat, 21 Nov 2009 20:46:34 +0000</pubDate>
		<guid isPermaLink="false">http://gobansaor.wordpress.com/?p=363#comment-5584</guid>
		<description>hi Tom, thanks very much for your pointer to CouchDB -- very helpful for those interested in NoSQL.

That makes it very easy to import/export with SQLite, so hence with any arbitrary Python object via y_serial http://yserial.sourceforge.net 

y_serial is designed to encourage shard SQLite databases and using Python code to unify them as needed. CouchDB is more monolithic -- so integration is an option when a project needs to scale big-time.</description>
		<content:encoded><![CDATA[<p>hi Tom, thanks very much for your pointer to CouchDB &#8212; very helpful for those interested in NoSQL.</p>
<p>That makes it very easy to import/export with SQLite, so hence with any arbitrary Python object via y_serial <a href="http://yserial.sourceforge.net" rel="nofollow">http://yserial.sourceforge.net</a> </p>
<p>y_serial is designed to encourage shard SQLite databases and using Python code to unify them as needed. CouchDB is more monolithic &#8212; so integration is an option when a project needs to scale big-time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom Gleeson</title>
		<link>http://blog.gobansaor.com/2008/04/26/sqlite-the-ultimate-data-smithing-tool/#comment-5577</link>
		<dc:creator>Tom Gleeson</dc:creator>
		<pubDate>Sat, 21 Nov 2009 11:15:19 +0000</pubDate>
		<guid isPermaLink="false">http://gobansaor.wordpress.com/?p=363#comment-5577</guid>
		<description>You should also look at supporting APSW http://apsw.googlecode.com/svn/publish/couchdb.html the CouchDB via SQLite Virtual Table would offer interesting possibilities; using CouchDB as Web based master but SQLite as the local engine?

In general the APSW approach to SQLite is much better that the standard Python library as it recognises that SQLite is different from server based rdbms.  

I use SQLite combined with Python, combined with Excel as my main datasmithing platform.

Tom</description>
		<content:encoded><![CDATA[<p>You should also look at supporting APSW <a href="http://apsw.googlecode.com/svn/publish/couchdb.html" rel="nofollow">http://apsw.googlecode.com/svn/publish/couchdb.html</a> the CouchDB via SQLite Virtual Table would offer interesting possibilities; using CouchDB as Web based master but SQLite as the local engine?</p>
<p>In general the APSW approach to SQLite is much better that the standard Python library as it recognises that SQLite is different from server based rdbms.  </p>
<p>I use SQLite combined with Python, combined with Excel as my main datasmithing platform.</p>
<p>Tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom Gleeson</title>
		<link>http://blog.gobansaor.com/2008/04/26/sqlite-the-ultimate-data-smithing-tool/#comment-5575</link>
		<dc:creator>Tom Gleeson</dc:creator>
		<pubDate>Sat, 21 Nov 2009 10:38:52 +0000</pubDate>
		<guid isPermaLink="false">http://gobansaor.wordpress.com/?p=363#comment-5575</guid>
		<description>Must give it a try, I particularly like the idea of SQLite as container for persisted dictionaries.

Tom</description>
		<content:encoded><![CDATA[<p>Must give it a try, I particularly like the idea of SQLite as container for persisted dictionaries.</p>
<p>Tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: code43</title>
		<link>http://blog.gobansaor.com/2008/04/26/sqlite-the-ultimate-data-smithing-tool/#comment-5574</link>
		<dc:creator>code43</dc:creator>
		<pubDate>Sat, 21 Nov 2009 02:53:24 +0000</pubDate>
		<guid isPermaLink="false">http://gobansaor.wordpress.com/?p=363#comment-5574</guid>
		<description>SQLite also has great support for BLOB which can be utilized for compressed serialized Python objects; see

http://yserial.sourceforge.net

Objects at that project are actually even more general: files and URL content -- but the clearly one of the most useful is dictionaries which is essential for schema-less data. Python dictionaries can contain arbitrary objects, and such dictionaries can be accessed simply through SQLite.

The SQLite module is part of the standard Python distribution &gt; v2.5, so there is no need for further installation, configuration, separate server process, etc. The y_serial module uses only standard issue components, so everything that Tom mentioned becomes easily Python accessible.</description>
		<content:encoded><![CDATA[<p>SQLite also has great support for BLOB which can be utilized for compressed serialized Python objects; see</p>
<p><a href="http://yserial.sourceforge.net" rel="nofollow">http://yserial.sourceforge.net</a></p>
<p>Objects at that project are actually even more general: files and URL content &#8212; but the clearly one of the most useful is dictionaries which is essential for schema-less data. Python dictionaries can contain arbitrary objects, and such dictionaries can be accessed simply through SQLite.</p>
<p>The SQLite module is part of the standard Python distribution &gt; v2.5, so there is no need for further installation, configuration, separate server process, etc. The y_serial module uses only standard issue components, so everything that Tom mentioned becomes easily Python accessible.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom Gleeson</title>
		<link>http://blog.gobansaor.com/2008/04/26/sqlite-the-ultimate-data-smithing-tool/#comment-5059</link>
		<dc:creator>Tom Gleeson</dc:creator>
		<pubDate>Thu, 16 Apr 2009 19:45:38 +0000</pubDate>
		<guid isPermaLink="false">http://gobansaor.wordpress.com/?p=363#comment-5059</guid>
		<description>@devnull

I don&#039;t use ODBC myself for connecting SQLite to Excel but I&#039;ve used this http://www.ch-werner.de/sqliteodbc/ in the past for connecting from Win32 based Java apps via a JDBC/ODBC bridge and it worked fine, including when I tested it from an Excel Query.

Tom</description>
		<content:encoded><![CDATA[<p>@devnull</p>
<p>I don&#8217;t use ODBC myself for connecting SQLite to Excel but I&#8217;ve used this <a href="http://www.ch-werner.de/sqliteodbc/" rel="nofollow">http://www.ch-werner.de/sqliteodbc/</a> in the past for connecting from Win32 based Java apps via a JDBC/ODBC bridge and it worked fine, including when I tested it from an Excel Query.</p>
<p>Tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: devnull</title>
		<link>http://blog.gobansaor.com/2008/04/26/sqlite-the-ultimate-data-smithing-tool/#comment-5058</link>
		<dc:creator>devnull</dc:creator>
		<pubDate>Thu, 16 Apr 2009 18:52:20 +0000</pubDate>
		<guid isPermaLink="false">http://gobansaor.wordpress.com/?p=363#comment-5058</guid>
		<description>i&#039;d be intested to see how you can connect excel to sqlite via odbc. it&#039;s been impossible for me to get it to work..</description>
		<content:encoded><![CDATA[<p>i&#8217;d be intested to see how you can connect excel to sqlite via odbc. it&#8217;s been impossible for me to get it to work..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQLite and Excel as DataSmithing Tools &#124; Chui&#8217;s counterpoint</title>
		<link>http://blog.gobansaor.com/2008/04/26/sqlite-the-ultimate-data-smithing-tool/#comment-5050</link>
		<dc:creator>SQLite and Excel as DataSmithing Tools &#124; Chui&#8217;s counterpoint</dc:creator>
		<pubDate>Thu, 16 Apr 2009 01:28:43 +0000</pubDate>
		<guid isPermaLink="false">http://gobansaor.wordpress.com/?p=363#comment-5050</guid>
		<description>[...] Gleeson aka Goban Saor has an interesting perspective on how well SQLite acts as a general table store which can then be used in OLAP and Excel. He describes the SQLite as the &#8220;MP3 for [...]</description>
		<content:encoded><![CDATA[<p>[...] Gleeson aka Goban Saor has an interesting perspective on how well SQLite acts as a general table store which can then be used in OLAP and Excel. He describes the SQLite as the &#8220;MP3 for [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Python the new VBA ? &#171; Gobán Saor</title>
		<link>http://blog.gobansaor.com/2008/04/26/sqlite-the-ultimate-data-smithing-tool/#comment-3966</link>
		<dc:creator>Python the new VBA ? &#171; Gobán Saor</dc:creator>
		<pubDate>Sun, 04 May 2008 22:19:51 +0000</pubDate>
		<guid isPermaLink="false">http://gobansaor.wordpress.com/?p=363#comment-3966</guid>
		<description>[...] 2.5 now has embedded SQLite3 (ultimate datasmithing tool!) support (note PHP5 developers, SQLite3 not [...]</description>
		<content:encoded><![CDATA[<p>[...] 2.5 now has embedded SQLite3 (ultimate datasmithing tool!) support (note PHP5 developers, SQLite3 not [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
