<?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: SQLite for C# – Part 6 – SQLite Connection String Definitions</title>
	<atom:link href="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/feed/" rel="self" type="application/rss+xml" />
	<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/</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>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>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>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>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>
</channel>
</rss>
