<?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/"
		>
<channel>
	<title>Comments on: Importing CSV files to SQLite</title>
	<atom:link href="http://undercrank.com/posts/2005/02/importing-csv-files-to-sqlite/feed/" rel="self" type="application/rss+xml" />
	<link>http://undercrank.com/posts/2005/02/importing-csv-files-to-sqlite/</link>
	<description></description>
	<lastBuildDate>Sat, 24 Jul 2010 11:15:16 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Ameto</title>
		<link>http://undercrank.com/posts/2005/02/importing-csv-files-to-sqlite/comment-page-1/#comment-171</link>
		<dc:creator>Ameto</dc:creator>
		<pubDate>Tue, 28 Apr 2009 05:18:06 +0000</pubDate>
		<guid isPermaLink="false">http://undercrank.com/?p=87#comment-171</guid>
		<description>Right now I&#039;ve already got the method  

It&#039;s just drop file in the same place that sqlite in !!!!!</description>
		<content:encoded><![CDATA[<p>Right now I&#8217;ve already got the method  </p>
<p>It&#8217;s just drop file in the same place that sqlite in !!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ameto</title>
		<link>http://undercrank.com/posts/2005/02/importing-csv-files-to-sqlite/comment-page-1/#comment-170</link>
		<dc:creator>Ameto</dc:creator>
		<pubDate>Thu, 23 Apr 2009 04:30:58 +0000</pubDate>
		<guid isPermaLink="false">http://undercrank.com/?p=87#comment-170</guid>
		<description>Can I ask some question about sqlite3

I &#039;ve already insert the comand like this

sqlite&gt; create table fonepa(A,B,C);
sqlite&gt; .seperater &quot; &quot;
sqlite&gt; .import &quot;Jan.csv&quot; test

and it &#039;s said that cannot open Jan.csv

So what should I drop my file

I &#039;ve drop my file at C:\Jan.csv

and I&#039;ve done the command 

sqlite&gt; create table fonepa(A,B,C);
sqlite&gt; .seperater &quot; &quot;
sqlite&gt; .import &quot;C:\Jan.csv&quot; test
cannot open Jan.csv

again  so what should I do</description>
		<content:encoded><![CDATA[<p>Can I ask some question about sqlite3</p>
<p>I &#8216;ve already insert the comand like this</p>
<p>sqlite&gt; create table fonepa(A,B,C);<br />
sqlite&gt; .seperater &#8221; &#8221;<br />
sqlite&gt; .import &#8220;Jan.csv&#8221; test</p>
<p>and it &#8216;s said that cannot open Jan.csv</p>
<p>So what should I drop my file</p>
<p>I &#8216;ve drop my file at C:\Jan.csv</p>
<p>and I&#8217;ve done the command </p>
<p>sqlite&gt; create table fonepa(A,B,C);<br />
sqlite&gt; .seperater &#8221; &#8221;<br />
sqlite&gt; .import &#8220;C:\Jan.csv&#8221; test<br />
cannot open Jan.csv</p>
<p>again  so what should I do</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Guggu</title>
		<link>http://undercrank.com/posts/2005/02/importing-csv-files-to-sqlite/comment-page-1/#comment-97</link>
		<dc:creator>Guggu</dc:creator>
		<pubDate>Thu, 22 Jan 2009 09:48:11 +0000</pubDate>
		<guid isPermaLink="false">http://undercrank.com/?p=87#comment-97</guid>
		<description>Stripping quotation marks out doesn&#039;t really help with data that has commas in it.

1, &quot;2nd Floor, 3rd Block&quot;, NY

Stripping quote out would replace NY with 3rd Block which wouldn&#039;t really help.

@Furbo: Thanks for the pointer. TkSQLite works like a charm!</description>
		<content:encoded><![CDATA[<p>Stripping quotation marks out doesn&#8217;t really help with data that has commas in it.</p>
<p>1, &#8220;2nd Floor, 3rd Block&#8221;, NY</p>
<p>Stripping quote out would replace NY with 3rd Block which wouldn&#8217;t really help.</p>
<p>@Furbo: Thanks for the pointer. TkSQLite works like a charm!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Furbo</title>
		<link>http://undercrank.com/posts/2005/02/importing-csv-files-to-sqlite/comment-page-1/#comment-63</link>
		<dc:creator>Furbo</dc:creator>
		<pubDate>Sun, 10 Sep 2006 22:12:31 +0000</pubDate>
		<guid isPermaLink="false">http://undercrank.com/?p=87#comment-63</guid>
		<description>The easiest way to do this is with the tksqlite application available for download at:

&lt;a href=&quot;http://reddog.s35.xrea.com/wiki/TkSQLite.html&quot; rel=&quot;nofollow&quot;&gt;&lt;a href=&quot;http://reddog.s35.xrea.com/wiki/TkSQLite.html&quot; rel=&quot;nofollow&quot;&gt;http://reddog.s35.xrea.com/wiki/TkSQLite.html&lt;/a&gt;&lt;/a&gt;

I&#039;m surprised it has not received more attention as it is (in my opinion) the best free tool for working with sqlite.

</description>
		<content:encoded><![CDATA[<p>The easiest way to do this is with the tksqlite application available for download at:</p>
<p><a href="http://reddog.s35.xrea.com/wiki/TkSQLite.html" rel="nofollow"></a><a href="http://reddog.s35.xrea.com/wiki/TkSQLite.html" rel="nofollow">http://reddog.s35.xrea.com/wiki/TkSQLite.html</a></p>
<p>I&#8217;m surprised it has not received more attention as it is (in my opinion) the best free tool for working with sqlite.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bart</title>
		<link>http://undercrank.com/posts/2005/02/importing-csv-files-to-sqlite/comment-page-1/#comment-62</link>
		<dc:creator>bart</dc:creator>
		<pubDate>Sat, 06 May 2006 21:52:19 +0000</pubDate>
		<guid isPermaLink="false">http://undercrank.com/?p=87#comment-62</guid>
		<description>Things can change quickly. The home page for SQLite browser, &lt;a href=&quot;http://sqlitebrowser.sourceforge.net/,&quot; rel=&quot;nofollow&quot;&gt;&lt;a href=&quot;http://sqlitebrowser.sourceforge.net/,&quot; rel=&quot;nofollow&quot;&gt;http://sqlitebrowser.sourceforge.net/,&lt;/a&gt;&lt;/a&gt; claims that version 1.2, released 2 months after your post, is compatible with SQLite 3.
</description>
		<content:encoded><![CDATA[<p>Things can change quickly. The home page for SQLite browser, <a href="http://sqlitebrowser.sourceforge.net/," rel="nofollow"></a><a href="http://sqlitebrowser.sourceforge.net/," rel="nofollow"></a><a href="http://sqlitebrowser.sourceforge.net/" rel="nofollow">http://sqlitebrowser.sourceforge.net/</a>, claims that version 1.2, released 2 months after your post, is compatible with SQLite 3.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jakob</title>
		<link>http://undercrank.com/posts/2005/02/importing-csv-files-to-sqlite/comment-page-1/#comment-61</link>
		<dc:creator>Jakob</dc:creator>
		<pubDate>Fri, 17 Mar 2006 00:40:44 +0000</pubDate>
		<guid isPermaLink="false">http://undercrank.com/?p=87#comment-61</guid>
		<description>Sorry, but step 1 (Make sure that the source file is stripped of quotation marks.) already makes the rest of this website irrelevant (to me).

While your procedure may be valuable to some people, I often work with databases containing free text, including commas and quotationmarks.

I guess I&#039;ll have to search on....
</description>
		<content:encoded><![CDATA[<p>Sorry, but step 1 (Make sure that the source file is stripped of quotation marks.) already makes the rest of this website irrelevant (to me).</p>
<p>While your procedure may be valuable to some people, I often work with databases containing free text, including commas and quotationmarks.</p>
<p>I guess I&#8217;ll have to search on&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew</title>
		<link>http://undercrank.com/posts/2005/02/importing-csv-files-to-sqlite/comment-page-1/#comment-60</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Sat, 11 Mar 2006 00:05:26 +0000</pubDate>
		<guid isPermaLink="false">http://undercrank.com/?p=87#comment-60</guid>
		<description>You can also do this from the sqlite command line tool (sqlite3 in my case). I ran the following commands:

sqlite&gt; .mode csv
sqlite&gt; .import ./test.csv test

I created a really simple table to test with.

sqlite&gt; .schema test
CREATE TABLE test (name varchar(255) not null, blah varchar(255) not null);

And my CSV file:

andrew,nklnsdf
blah,kls
joey,aknlkn
jim,asdf

After the import:

sqlite&gt; select * from test;
andrew&#124;nklnsdf
blah&#124;kls
joey&#124;aknlkn
jim&#124;asdf
</description>
		<content:encoded><![CDATA[<p>You can also do this from the sqlite command line tool (sqlite3 in my case). I ran the following commands:</p>
<p>sqlite> .mode csv<br />
sqlite> .import ./test.csv test</p>
<p>I created a really simple table to test with.</p>
<p>sqlite> .schema test<br />
CREATE TABLE test (name varchar(255) not null, blah varchar(255) not null);</p>
<p>And my CSV file:</p>
<p>andrew,nklnsdf<br />
blah,kls<br />
joey,aknlkn<br />
jim,asdf</p>
<p>After the import:</p>
<p>sqlite> select * from test;<br />
andrew|nklnsdf<br />
blah|kls<br />
joey|aknlkn<br />
jim|asdf</p>
]]></content:encoded>
	</item>
</channel>
</rss>
