<?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 for C# Hacker - The Rambling Coder</title>
	<atom:link href="http://www.csharphacker.com/technicalblog/index.php/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.csharphacker.com/technicalblog</link>
	<description>Thoughts and ponderings on the technical world</description>
	<lastBuildDate>Mon, 05 Jul 2010 11:07:47 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>Comment on SQLite for C# &#8211; Part 1 &#8211; Am I allowed to use it? by Santosh</title>
		<link>http://www.csharphacker.com/technicalblog/index.php/2009/06/16/sqlite-for-c-part-1-am-i-allowed-to-use-it/comment-page-1/#comment-302</link>
		<dc:creator>Santosh</dc:creator>
		<pubDate>Mon, 05 Jul 2010 11:07:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharphacker.com/technicalblog/?p=162#comment-302</guid>
		<description>Many many thanks for this great article. This is the first article that helped me to write Hello World in SqlLite. Thanks a ton.</description>
		<content:encoded><![CDATA[<p>Many many thanks for this great article. This is the first article that helped me to write Hello World in SqlLite. Thanks a ton.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SQLite for C# &#8211; Part 1 &#8211; Am I allowed to use it? by John</title>
		<link>http://www.csharphacker.com/technicalblog/index.php/2009/06/16/sqlite-for-c-part-1-am-i-allowed-to-use-it/comment-page-1/#comment-301</link>
		<dc:creator>John</dc:creator>
		<pubDate>Thu, 01 Jul 2010 12:05:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharphacker.com/technicalblog/?p=162#comment-301</guid>
		<description>Gareth, you&#039;re a lifesaver. Thanks a billion! :D</description>
		<content:encoded><![CDATA[<p>Gareth, you&#8217;re a lifesaver. Thanks a billion! <img src='http://www.csharphacker.com/technicalblog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to write SHA256Sum in C# (or MD5Sum, SHA1Sum) by David</title>
		<link>http://www.csharphacker.com/technicalblog/index.php/2009/07/12/how-to-write-sha256sum-in-c-or-md5sum-sha1sum/comment-page-1/#comment-285</link>
		<dc:creator>David</dc:creator>
		<pubDate>Thu, 03 Jun 2010 19:39:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharphacker.com/technicalblog/?p=354#comment-285</guid>
		<description>Thanks for the article, it cleared up some of my confusion around some of the SHA-256 hash I was trying.  I found this page while trying to track down  that nasty &#039;PlatformNotSupportedException&#039; error on google.</description>
		<content:encoded><![CDATA[<p>Thanks for the article, it cleared up some of my confusion around some of the SHA-256 hash I was trying.  I found this page while trying to track down  that nasty &#8216;PlatformNotSupportedException&#8217; error on google.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SQLite for C# &#8211; Part 1 &#8211; Am I allowed to use it? by links for 2010-05-25 &#8211; Chris Dalby Untangles Networks</title>
		<link>http://www.csharphacker.com/technicalblog/index.php/2009/06/16/sqlite-for-c-part-1-am-i-allowed-to-use-it/comment-page-1/#comment-284</link>
		<dc:creator>links for 2010-05-25 &#8211; Chris Dalby Untangles Networks</dc:creator>
		<pubDate>Tue, 25 May 2010 23:14:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharphacker.com/technicalblog/?p=162#comment-284</guid>
		<description>[...] SQLite for C# – Part 1 – Am I allowed to use it? « C# Hacker – The Rambling Coder Using c #and SQLite. (tags: c# .net sqlite) [...]</description>
		<content:encoded><![CDATA[<p>[...] SQLite for C# – Part 1 – Am I allowed to use it? « C# Hacker – The Rambling Coder Using c #and SQLite. (tags: c# .net sqlite) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SQLite for C# – Part 8 – Loading CSV/Pipe into SQLite via command line by Gareth</title>
		<link>http://www.csharphacker.com/technicalblog/index.php/2009/09/19/sqliteforcsharppart8loadingcsvpipeintosqliteviacommandline/comment-page-1/#comment-283</link>
		<dc:creator>Gareth</dc:creator>
		<pubDate>Tue, 11 May 2010 12:58:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharphacker.com/technicalblog/?p=447#comment-283</guid>
		<description>These are really built into the SQLite3 application rather than the OLE-DB driver. So the simple answer is no, however if you look at the C# implementation they have ported the whole thing including the main program, via translation - so dont expect the code to be pretty, to C#. So you could lever that, or invoke the native SQLite3 application. It all depends on what you are trying to achieve!

Gareth</description>
		<content:encoded><![CDATA[<p>These are really built into the SQLite3 application rather than the OLE-DB driver. So the simple answer is no, however if you look at the C# implementation they have ported the whole thing including the main program, via translation &#8211; so dont expect the code to be pretty, to C#. So you could lever that, or invoke the native SQLite3 application. It all depends on what you are trying to achieve!</p>
<p>Gareth</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SQLite for C# – Part 8 – Loading CSV/Pipe into SQLite via command line by goose1_fr</title>
		<link>http://www.csharphacker.com/technicalblog/index.php/2009/09/19/sqliteforcsharppart8loadingcsvpipeintosqliteviacommandline/comment-page-1/#comment-282</link>
		<dc:creator>goose1_fr</dc:creator>
		<pubDate>Mon, 10 May 2010 14:12:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharphacker.com/technicalblog/?p=447#comment-282</guid>
		<description>is it possible to implement this special command (.mod ; .separator and .import ...) in C# program ?</description>
		<content:encoded><![CDATA[<p>is it possible to implement this special command (.mod ; .separator and .import &#8230;) in C# program ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SQLite for C# – Part 8 – Loading CSV/Pipe into SQLite via command line by Gab</title>
		<link>http://www.csharphacker.com/technicalblog/index.php/2009/09/19/sqliteforcsharppart8loadingcsvpipeintosqliteviacommandline/comment-page-1/#comment-281</link>
		<dc:creator>Gab</dc:creator>
		<pubDate>Sat, 08 May 2010 12:18:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharphacker.com/technicalblog/?p=447#comment-281</guid>
		<description>Simple, Ordered, Fully Explained. Excelent Tutorial Congrats. And thanks you. I&#039;ll use it today, u&#039;ve saved me to use MS Access !! IIUGGHHH !!! Thansk a lot. 

Gab.</description>
		<content:encoded><![CDATA[<p>Simple, Ordered, Fully Explained. Excelent Tutorial Congrats. And thanks you. I&#8217;ll use it today, u&#8217;ve saved me to use MS Access !! IIUGGHHH !!! Thansk a lot. </p>
<p>Gab.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SQLite for C# – Part 8 – Loading CSV/Pipe into SQLite via command line by Sean</title>
		<link>http://www.csharphacker.com/technicalblog/index.php/2009/09/19/sqliteforcsharppart8loadingcsvpipeintosqliteviacommandline/comment-page-1/#comment-279</link>
		<dc:creator>Sean</dc:creator>
		<pubDate>Thu, 22 Apr 2010 03:45:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharphacker.com/technicalblog/?p=447#comment-279</guid>
		<description>Just wanted to say thanks for the excellent series.  I&#039;ve read it 2 or 3 times now!</description>
		<content:encoded><![CDATA[<p>Just wanted to say thanks for the excellent series.  I&#8217;ve read it 2 or 3 times now!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C# Code coverage approaches and unit tests by Gavin</title>
		<link>http://www.csharphacker.com/technicalblog/index.php/2009/09/14/code-coverage-approaches-with-tdd/comment-page-1/#comment-275</link>
		<dc:creator>Gavin</dc:creator>
		<pubDate>Fri, 26 Mar 2010 07:46:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharphacker.com/technicalblog/?p=442#comment-275</guid>
		<description>There is a free community edition of NCover(1.5.8) which we are using but it sorely lacks in features when compared to the commercial one :)

http://www.ncover.com/download/community</description>
		<content:encoded><![CDATA[<p>There is a free community edition of NCover(1.5.8) which we are using but it sorely lacks in features when compared to the commercial one <img src='http://www.csharphacker.com/technicalblog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://www.ncover.com/download/community" rel="nofollow">http://www.ncover.com/download/community</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 2010 &#8211; 2012 Technology Predictions by Gareth</title>
		<link>http://www.csharphacker.com/technicalblog/index.php/2010/01/23/2010-2012-technology-predictions/comment-page-1/#comment-195</link>
		<dc:creator>Gareth</dc:creator>
		<pubDate>Mon, 25 Jan 2010 18:02:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharphacker.com/technicalblog/?p=493#comment-195</guid>
		<description>I forgot to add SSD&#039;s will become the standard for netbooks and notebooks. :-)</description>
		<content:encoded><![CDATA[<p>I forgot to add SSD&#8217;s will become the standard for netbooks and notebooks. <img src='http://www.csharphacker.com/technicalblog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SQLite for C# – Part 8 – Loading CSV/Pipe into SQLite via command line by Sean</title>
		<link>http://www.csharphacker.com/technicalblog/index.php/2009/09/19/sqliteforcsharppart8loadingcsvpipeintosqliteviacommandline/comment-page-1/#comment-187</link>
		<dc:creator>Sean</dc:creator>
		<pubDate>Sat, 23 Jan 2010 20:39:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharphacker.com/technicalblog/?p=447#comment-187</guid>
		<description>A minor update - I haven&#039;t tried it yet, but some recent tweaking in the dev branch is yielding improved perf for the .Net port.  They are still trying to fix bugs though....</description>
		<content:encoded><![CDATA[<p>A minor update &#8211; I haven&#8217;t tried it yet, but some recent tweaking in the dev branch is yielding improved perf for the .Net port.  They are still trying to fix bugs though&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SQLite for C# – Part 6 – SQLite Connection String Definitions by Gareth</title>
		<link>http://www.csharphacker.com/technicalblog/index.php/2009/07/02/sqlite-for-c-%e2%80%93-part-6-%e2%80%93-sqlite-connection-string-definitions/comment-page-1/#comment-182</link>
		<dc:creator>Gareth</dc:creator>
		<pubDate>Fri, 22 Jan 2010 22:40:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharphacker.com/technicalblog/?p=293#comment-182</guid>
		<description>I&#039;ve not come across that specifically, however if you are using the latest driver I would submit your question to the following forum. 

http://sqlite.phxsoftware.com/forums/

The direct link to the bugs section is : http://sqlite.phxsoftware.com/forums/5.aspx 

However before you submit your question/bug check to see if it has already been raised/answered - as it most likely will have been. Normally they are responsive and should be able to help,

Hope this helps,
Gareth</description>
		<content:encoded><![CDATA[<p>I&#8217;ve not come across that specifically, however if you are using the latest driver I would submit your question to the following forum. </p>
<p><a href="http://sqlite.phxsoftware.com/forums/" rel="nofollow">http://sqlite.phxsoftware.com/forums/</a></p>
<p>The direct link to the bugs section is : <a href="http://sqlite.phxsoftware.com/forums/5.aspx" rel="nofollow">http://sqlite.phxsoftware.com/forums/5.aspx</a> </p>
<p>However before you submit your question/bug check to see if it has already been raised/answered &#8211; as it most likely will have been. Normally they are responsive and should be able to help,</p>
<p>Hope this helps,<br />
Gareth</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SQLite for C# – Part 6 – SQLite Connection String Definitions by BronskyB.</title>
		<link>http://www.csharphacker.com/technicalblog/index.php/2009/07/02/sqlite-for-c-%e2%80%93-part-6-%e2%80%93-sqlite-connection-string-definitions/comment-page-1/#comment-179</link>
		<dc:creator>BronskyB.</dc:creator>
		<pubDate>Fri, 22 Jan 2010 11:16:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharphacker.com/technicalblog/?p=293#comment-179</guid>
		<description>Hi there! 

Great tutorial and theory on SQLite. 

However, there&#039;s something I still haven&#039;t figured out, and hoped maybe you could help me with this. 

I have set up a WinForm application (C#) with an SQLite DB attached to it. Let&#039;s call the DB &#039;Mates&#039; and the table &#039;bestFriends&#039;. It has two columns, &#039;firstName&#039; and &#039;lastName&#039;. I get my program to show the data from the table in both detail and datagrid views. 

So here comes the problem. The &#039;SaveItem&#039;-button that VS put in has worked when I&#039;ve used MS Access DBs, but just causes the program to crash when I use it with SQLite. Do you have any suggestions as to how I could make a save-button or edit the one that VS already put in? 

Your help would be greatly appreciated, 


BronskyB

Oslo, Norway</description>
		<content:encoded><![CDATA[<p>Hi there! </p>
<p>Great tutorial and theory on SQLite. </p>
<p>However, there&#8217;s something I still haven&#8217;t figured out, and hoped maybe you could help me with this. </p>
<p>I have set up a WinForm application (C#) with an SQLite DB attached to it. Let&#8217;s call the DB &#8216;Mates&#8217; and the table &#8216;bestFriends&#8217;. It has two columns, &#8216;firstName&#8217; and &#8216;lastName&#8217;. I get my program to show the data from the table in both detail and datagrid views. </p>
<p>So here comes the problem. The &#8216;SaveItem&#8217;-button that VS put in has worked when I&#8217;ve used MS Access DBs, but just causes the program to crash when I use it with SQLite. Do you have any suggestions as to how I could make a save-button or edit the one that VS already put in? </p>
<p>Your help would be greatly appreciated, </p>
<p>BronskyB</p>
<p>Oslo, Norway</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SQLite for C# &#8211; Part 1 &#8211; Am I allowed to use it? by Ahmed</title>
		<link>http://www.csharphacker.com/technicalblog/index.php/2009/06/16/sqlite-for-c-part-1-am-i-allowed-to-use-it/comment-page-1/#comment-175</link>
		<dc:creator>Ahmed</dc:creator>
		<pubDate>Wed, 20 Jan 2010 18:45:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharphacker.com/technicalblog/?p=162#comment-175</guid>
		<description>Thank you for the great step-by-step lesson,carry on man</description>
		<content:encoded><![CDATA[<p>Thank you for the great step-by-step lesson,carry on man</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SQLite for C# – Part 6 – SQLite Connection String Definitions by Gareth</title>
		<link>http://www.csharphacker.com/technicalblog/index.php/2009/07/02/sqlite-for-c-%e2%80%93-part-6-%e2%80%93-sqlite-connection-string-definitions/comment-page-1/#comment-161</link>
		<dc:creator>Gareth</dc:creator>
		<pubDate>Fri, 11 Dec 2009 17:02:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharphacker.com/technicalblog/?p=293#comment-161</guid>
		<description>You can perform encryption through your connection string, or via pragmas. As you are using C++ and not C# you may want to look at:
http://www.hwaci.com/sw/sqlite/see.html 

Does that help?</description>
		<content:encoded><![CDATA[<p>You can perform encryption through your connection string, or via pragmas. As you are using C++ and not C# you may want to look at:<br />
<a href="http://www.hwaci.com/sw/sqlite/see.html" rel="nofollow">http://www.hwaci.com/sw/sqlite/see.html</a> </p>
<p>Does that help?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SQLite for C# – Part 6 – SQLite Connection String Definitions by Kiran</title>
		<link>http://www.csharphacker.com/technicalblog/index.php/2009/07/02/sqlite-for-c-%e2%80%93-part-6-%e2%80%93-sqlite-connection-string-definitions/comment-page-1/#comment-160</link>
		<dc:creator>Kiran</dc:creator>
		<pubDate>Fri, 11 Dec 2009 12:18:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharphacker.com/technicalblog/?p=293#comment-160</guid>
		<description>Can you explain how to encrypt an SQLite DB file in C++</description>
		<content:encoded><![CDATA[<p>Can you explain how to encrypt an SQLite DB file in C++</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Welcome to the Google Wave &#8211; what is the wave (and where is the board)&#8230; by Google Groups support joins Google Wave</title>
		<link>http://www.csharphacker.com/technicalblog/index.php/2009/11/18/welcome-to-the-google-wave-what-is-the-wave-and-where-is-the-board/comment-page-1/#comment-156</link>
		<dc:creator>Google Groups support joins Google Wave</dc:creator>
		<pubDate>Thu, 10 Dec 2009 08:27:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharphacker.com/technicalblog/?p=474#comment-156</guid>
		<description>[...] Welcome to the Google Wave – what is the wave (and where is the &#8230; [...]</description>
		<content:encoded><![CDATA[<p>[...] Welcome to the Google Wave – what is the wave (and where is the &#8230; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SQLite for C# – Part 8 – Loading CSV/Pipe into SQLite via command line by Gareth</title>
		<link>http://www.csharphacker.com/technicalblog/index.php/2009/09/19/sqliteforcsharppart8loadingcsvpipeintosqliteviacommandline/comment-page-1/#comment-131</link>
		<dc:creator>Gareth</dc:creator>
		<pubDate>Tue, 27 Oct 2009 00:40:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharphacker.com/technicalblog/?p=447#comment-131</guid>
		<description>I&#039;ve only downloaded it enough to see how well the translation went. Got to say I dont like the generated code too much. Outside of that I&#039;ve not had much to do with it. I would like to really see a native version as that avoids the whole 64 bit vs 32 bit question, and I would hope it would also help with performance (although the charp-sqlite doesnt reflect any performance gains). My hope is that the Mono team include it, or MS includes it as a native implementation :-)</description>
		<content:encoded><![CDATA[<p>I&#8217;ve only downloaded it enough to see how well the translation went. Got to say I dont like the generated code too much. Outside of that I&#8217;ve not had much to do with it. I would like to really see a native version as that avoids the whole 64 bit vs 32 bit question, and I would hope it would also help with performance (although the charp-sqlite doesnt reflect any performance gains). My hope is that the Mono team include it, or MS includes it as a native implementation <img src='http://www.csharphacker.com/technicalblog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SQLite for C# – Part 8 – Loading CSV/Pipe into SQLite via command line by Sean</title>
		<link>http://www.csharphacker.com/technicalblog/index.php/2009/09/19/sqliteforcsharppart8loadingcsvpipeintosqliteviacommandline/comment-page-1/#comment-122</link>
		<dc:creator>Sean</dc:creator>
		<pubDate>Wed, 14 Oct 2009 14:04:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharphacker.com/technicalblog/?p=447#comment-122</guid>
		<description>Have you played with the .Net port of SQLite?  http://code.google.com/p/csharp-sqlite/

I&#039;d be interested in knowing if you noticed any differences...</description>
		<content:encoded><![CDATA[<p>Have you played with the .Net port of SQLite?  <a href="http://code.google.com/p/csharp-sqlite/" rel="nofollow">http://code.google.com/p/csharp-sqlite/</a></p>
<p>I&#8217;d be interested in knowing if you noticed any differences&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SQLite for C# – Part 8 – Loading CSV/Pipe into SQLite via command line by Jenny</title>
		<link>http://www.csharphacker.com/technicalblog/index.php/2009/09/19/sqliteforcsharppart8loadingcsvpipeintosqliteviacommandline/comment-page-1/#comment-116</link>
		<dc:creator>Jenny</dc:creator>
		<pubDate>Fri, 09 Oct 2009 11:13:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharphacker.com/technicalblog/?p=447#comment-116</guid>
		<description>Thank you! for the very informative and useful writeup. Even those Wrox and Wiley&#039;s heavy and expensive books couldn&#039;t cleared what you have done in few lines.</description>
		<content:encoded><![CDATA[<p>Thank you! for the very informative and useful writeup. Even those Wrox and Wiley&#8217;s heavy and expensive books couldn&#8217;t cleared what you have done in few lines.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
