<?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: Hooking up SQLite and PowerShell</title>
	<atom:link href="http://blog.koenvermoesen.be/2008/11/03/hooking-up-sqlite-and-powershell/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.koenvermoesen.be/2008/11/03/hooking-up-sqlite-and-powershell/</link>
	<description>Allways looking for a better Blog Title...</description>
	<lastBuildDate>Fri, 27 Jan 2012 16:45:13 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: image72</title>
		<link>http://blog.koenvermoesen.be/2008/11/03/hooking-up-sqlite-and-powershell/#comment-246</link>
		<dc:creator><![CDATA[image72]]></dc:creator>
		<pubDate>Wed, 20 Jan 2010 15:58:05 +0000</pubDate>
		<guid isPermaLink="false">http://k0v3.wordpress.com/?p=192#comment-246</guid>
		<description><![CDATA[Using The SQLite.NET Library From Powershell
in http://goo.gl/a3Qx
I think you can see that.
How to ref sqlite3.dll]]></description>
		<content:encoded><![CDATA[<p>Using The SQLite.NET Library From Powershell<br />
in <a href="http://goo.gl/a3Qx" rel="nofollow">http://goo.gl/a3Qx</a><br />
I think you can see that.<br />
How to ref sqlite3.dll</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: k0v3</title>
		<link>http://blog.koenvermoesen.be/2008/11/03/hooking-up-sqlite-and-powershell/#comment-226</link>
		<dc:creator><![CDATA[k0v3]]></dc:creator>
		<pubDate>Thu, 19 Nov 2009 08:22:06 +0000</pubDate>
		<guid isPermaLink="false">http://k0v3.wordpress.com/?p=192#comment-226</guid>
		<description><![CDATA[Thanks for the feedback.]]></description>
		<content:encoded><![CDATA[<p>Thanks for the feedback.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joris Meuleman</title>
		<link>http://blog.koenvermoesen.be/2008/11/03/hooking-up-sqlite-and-powershell/#comment-225</link>
		<dc:creator><![CDATA[Joris Meuleman]]></dc:creator>
		<pubDate>Wed, 18 Nov 2009 23:09:04 +0000</pubDate>
		<guid isPermaLink="false">http://k0v3.wordpress.com/?p=192#comment-225</guid>
		<description><![CDATA[This script doesn&#039;t work, probably because of some upgrades. Do get it working you have to replace the folowing 2 lines:
  $cm.Connection = $cn
  $cm.CommandText = $sql
with:
  $cm = New-Object -TypeName System.Data.SQLite.SQLiteCommand($sql,$cn)

If you want the structure of your tables, use the folwing code after the line 
  $dr = $cm.ExecuteReader()

# Write out the result set structure
for ($i=0;$i -lt $dr.FieldCount;$i++) {
    Write-Host  $dr.GetName($i) $dr.GetDataTypeName($i)
}]]></description>
		<content:encoded><![CDATA[<p>This script doesn&#8217;t work, probably because of some upgrades. Do get it working you have to replace the folowing 2 lines:<br />
  $cm.Connection = $cn<br />
  $cm.CommandText = $sql<br />
with:<br />
  $cm = New-Object -TypeName System.Data.SQLite.SQLiteCommand($sql,$cn)</p>
<p>If you want the structure of your tables, use the folwing code after the line<br />
  $dr = $cm.ExecuteReader()</p>
<p># Write out the result set structure<br />
for ($i=0;$i -lt $dr.FieldCount;$i++) {<br />
    Write-Host  $dr.GetName($i) $dr.GetDataTypeName($i)<br />
}</p>
]]></content:encoded>
	</item>
</channel>
</rss>

