<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	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>Developer's Blog</title>
	<atom:link href="http://greatool.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://greatool.wordpress.com</link>
	<description>Developer Sharing Weblog</description>
	<lastBuildDate>Sun, 23 Sep 2007 09:59:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='greatool.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Developer's Blog</title>
		<link>http://greatool.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://greatool.wordpress.com/osd.xml" title="Developer&#039;s Blog" />
	<atom:link rel='hub' href='http://greatool.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Backup MS SQL Database using VB.NET</title>
		<link>http://greatool.wordpress.com/2007/09/23/backup-ms-sql-database-using-vbnet/</link>
		<comments>http://greatool.wordpress.com/2007/09/23/backup-ms-sql-database-using-vbnet/#comments</comments>
		<pubDate>Sun, 23 Sep 2007 09:59:41 +0000</pubDate>
		<dc:creator>chiangkl</dc:creator>
				<category><![CDATA[DotNet]]></category>

		<guid isPermaLink="false">http://greatool.wordpress.com/2007/09/23/backup-ms-sql-database-using-vbnet/</guid>
		<description><![CDATA[Imports Microsoft.SqlServer.Server Public Class Form1 Dim oSQLServer As New SQLDMO.SQLServer Dim WithEvents oBackup As New SQLDMO.Backup Dim WithEvents oRestore As New SQLDMO.Restore Const _INSTANCE As String = &#8220;192.168.1.3\SQLEXPRESS&#8221; Const _USER As String = &#8220;sa&#8221; Const _PWD As String = &#8220;password&#8221; Const _BACKUPFILE As String = &#8220;data.bkp&#8221; Const _DATABASE As String = &#8220;database1&#8243; Private Sub btnBackup_Click(ByVal [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=greatool.wordpress.com&amp;blog=1679534&amp;post=8&amp;subd=greatool&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Imports Microsoft.SqlServer.Server</p>
<p>Public Class Form1<br />
    Dim oSQLServer As New SQLDMO.SQLServer<br />
    Dim WithEvents oBackup As New SQLDMO.Backup<br />
    Dim WithEvents oRestore As New SQLDMO.Restore</p>
<p>    Const _INSTANCE As String = &#8220;192.168.1.3\SQLEXPRESS&#8221;<br />
    Const _USER As String = &#8220;sa&#8221;<br />
    Const _PWD As String = &#8220;password&#8221;<br />
    Const _BACKUPFILE As String = &#8220;data.bkp&#8221;<br />
    Const _DATABASE As String = &#8220;database1&#8243;</p>
<p>    Private Sub btnBackup_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnBackup.Click<br />
        With oBackup<br />
            &#8216;.Devices = &#8220;[NorthwindBackup]&#8220;<br />
            .Files = _BACKUPFILE<br />
            .Database = _DATABASE<br />
            .BackupSetName = &#8220;MySNPSet&#8221;<br />
            .BackupSetDescription = &#8220;Backup from VB.NET application&#8221;<br />
            oSQLServer.Connect(_INSTANCE, _USER, _PWD)<br />
            .SQLBackup(oSQLServer)<br />
            oSQLServer.DisConnect()<br />
        End With<br />
        MessageBox.Show(&#8220;Backup Completed Sucessfully&#8221;, &#8220;Message&#8221;, MessageBoxButtons.OK, MessageBoxIcon.Information)<br />
    End Sub</p>
<p>End Class</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/greatool.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/greatool.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/greatool.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/greatool.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/greatool.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/greatool.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/greatool.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/greatool.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/greatool.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/greatool.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/greatool.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/greatool.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/greatool.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/greatool.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/greatool.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/greatool.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=greatool.wordpress.com&amp;blog=1679534&amp;post=8&amp;subd=greatool&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://greatool.wordpress.com/2007/09/23/backup-ms-sql-database-using-vbnet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5feb7b22f52531b0feda718ac5abb33a?s=96&#38;d=identicon" medium="image">
			<media:title type="html">chiangkl</media:title>
		</media:content>
	</item>
		<item>
		<title>CentOS 5 &#8211; A Community ENTerprise Operating System</title>
		<link>http://greatool.wordpress.com/2007/09/23/centos-5-a-community-enterprise-operating-system/</link>
		<comments>http://greatool.wordpress.com/2007/09/23/centos-5-a-community-enterprise-operating-system/#comments</comments>
		<pubDate>Sun, 23 Sep 2007 09:53:08 +0000</pubDate>
		<dc:creator>chiangkl</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://greatool.wordpress.com/2007/09/23/centos-5-a-community-enterprise-operating-system/</guid>
		<description><![CDATA[CentOS is an Enterprise-class Linux distribution derived from sources freely provided to the public by our Redhat Enterprise. CentOS conforms fully with Redhat Enterprise redistribution policy and aims to be 100% binary compatible. CentOS mainly changes packages to remove the branding and artwork of Redhat. CentOS is for those who want a stable OS, officially [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=greatool.wordpress.com&amp;blog=1679534&amp;post=7&amp;subd=greatool&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>CentOS is an Enterprise-class Linux distribution derived from sources freely provided to the public by our Redhat Enterprise.</p>
<p>CentOS conforms fully with Redhat Enterprise redistribution policy and aims to be 100% binary compatible. CentOS mainly changes packages to remove the branding and artwork of Redhat.</p>
<p>CentOS is for those who want a stable OS, officially supported for a long period of time. This is for those who want a Redhat Enterprise Linux, but has no budget.</p>
<p><a href="http://www.centos.org" title="CentOS" target="_blank">Visit offical CentOS website for more info.</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/greatool.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/greatool.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/greatool.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/greatool.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/greatool.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/greatool.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/greatool.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/greatool.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/greatool.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/greatool.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/greatool.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/greatool.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/greatool.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/greatool.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/greatool.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/greatool.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=greatool.wordpress.com&amp;blog=1679534&amp;post=7&amp;subd=greatool&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://greatool.wordpress.com/2007/09/23/centos-5-a-community-enterprise-operating-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5feb7b22f52531b0feda718ac5abb33a?s=96&#38;d=identicon" medium="image">
			<media:title type="html">chiangkl</media:title>
		</media:content>
	</item>
		<item>
		<title>Learning Linux</title>
		<link>http://greatool.wordpress.com/2007/09/09/learning-linux/</link>
		<comments>http://greatool.wordpress.com/2007/09/09/learning-linux/#comments</comments>
		<pubDate>Sun, 09 Sep 2007 03:10:53 +0000</pubDate>
		<dc:creator>chiangkl</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://greatool.wordpress.com/2007/09/09/learning-linux/</guid>
		<description><![CDATA[I am always admire of the Open Source world, tons of great applications contributed by the lovely commnunity. Sadly, I was started as a Microsoft guy, no company is willing to employ me to learn Linux&#8230;&#8230;.Thus, I am taking my own time to familiarize myself with Linux&#8230;&#8230;  Not bad, through persistent learning, I have gained [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=greatool.wordpress.com&amp;blog=1679534&amp;post=6&amp;subd=greatool&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am always admire of the Open Source world, tons of great applications contributed by the lovely commnunity. Sadly, I was started as a Microsoft guy, no company is willing to employ me to learn Linux&#8230;&#8230;.Thus, I am taking my own time to familiarize myself with Linux&#8230;&#8230;</p>
<p> Not bad, through persistent learning, I have gained the following knowledges:-</p>
<ul>
<li>Setting up two public Linux server (ReadHat) with DNS service, Qmail, Apache, MySQL, PostgreSQL, PHP, Perl, Mono, QmailAdmin, Horde, SquirrelMail, Webalizer.</li>
<li>Setting up many Linux workstations with OpenOffice, Evolution, Gaim/Pidgin, Mplayer.</li>
</ul>
<p>I can term myself as an experienced linux user now. The only thing I have not involve heavily is programming in Linux. I will start trying it soon&#8230;..</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/greatool.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/greatool.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/greatool.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/greatool.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/greatool.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/greatool.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/greatool.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/greatool.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/greatool.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/greatool.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/greatool.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/greatool.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/greatool.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/greatool.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/greatool.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/greatool.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=greatool.wordpress.com&amp;blog=1679534&amp;post=6&amp;subd=greatool&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://greatool.wordpress.com/2007/09/09/learning-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5feb7b22f52531b0feda718ac5abb33a?s=96&#38;d=identicon" medium="image">
			<media:title type="html">chiangkl</media:title>
		</media:content>
	</item>
		<item>
		<title>DotNet Technology</title>
		<link>http://greatool.wordpress.com/2007/09/09/dotnet-technology/</link>
		<comments>http://greatool.wordpress.com/2007/09/09/dotnet-technology/#comments</comments>
		<pubDate>Sun, 09 Sep 2007 03:04:33 +0000</pubDate>
		<dc:creator>chiangkl</dc:creator>
				<category><![CDATA[DotNet]]></category>

		<guid isPermaLink="false">http://greatool.wordpress.com/2007/09/09/dotnet-technology/</guid>
		<description><![CDATA[My main job involves in programming with Microsoft Technology (DotNet). Visual Basic and C# are my primary languages used. Currently, I am still at version 2.0 of the Framework.  I am currently spending my spare time looking at Framework 3.0. I will write some articles related to it very soon, stay tune.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=greatool.wordpress.com&amp;blog=1679534&amp;post=5&amp;subd=greatool&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My main job involves in programming with Microsoft Technology (DotNet). Visual Basic and C# are my primary languages used. Currently, I am still at version 2.0 of the Framework.</p>
<p> I am currently spending my spare time looking at Framework 3.0. I will write some articles related to it very soon, stay tune.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/greatool.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/greatool.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/greatool.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/greatool.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/greatool.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/greatool.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/greatool.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/greatool.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/greatool.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/greatool.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/greatool.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/greatool.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/greatool.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/greatool.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/greatool.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/greatool.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=greatool.wordpress.com&amp;blog=1679534&amp;post=5&amp;subd=greatool&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://greatool.wordpress.com/2007/09/09/dotnet-technology/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5feb7b22f52531b0feda718ac5abb33a?s=96&#38;d=identicon" medium="image">
			<media:title type="html">chiangkl</media:title>
		</media:content>
	</item>
		<item>
		<title>FOREX Investment</title>
		<link>http://greatool.wordpress.com/2007/09/09/forex-investment/</link>
		<comments>http://greatool.wordpress.com/2007/09/09/forex-investment/#comments</comments>
		<pubDate>Sun, 09 Sep 2007 03:01:57 +0000</pubDate>
		<dc:creator>chiangkl</dc:creator>
				<category><![CDATA[Forex]]></category>

		<guid isPermaLink="false">http://greatool.wordpress.com/2007/09/09/forex-investment/</guid>
		<description><![CDATA[Beside than programming, i use my spare time to invest in FOREX market, I use some of the free trade signals. It helps to earn some side income for me periodically.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=greatool.wordpress.com&amp;blog=1679534&amp;post=4&amp;subd=greatool&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Beside than programming, i use my spare time to invest in FOREX market, I use some of the free trade signals. It helps to earn some side income for me periodically.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/greatool.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/greatool.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/greatool.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/greatool.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/greatool.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/greatool.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/greatool.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/greatool.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/greatool.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/greatool.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/greatool.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/greatool.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/greatool.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/greatool.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/greatool.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/greatool.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=greatool.wordpress.com&amp;blog=1679534&amp;post=4&amp;subd=greatool&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://greatool.wordpress.com/2007/09/09/forex-investment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5feb7b22f52531b0feda718ac5abb33a?s=96&#38;d=identicon" medium="image">
			<media:title type="html">chiangkl</media:title>
		</media:content>
	</item>
		<item>
		<title>Open Source Database</title>
		<link>http://greatool.wordpress.com/2007/09/09/open-source-database/</link>
		<comments>http://greatool.wordpress.com/2007/09/09/open-source-database/#comments</comments>
		<pubDate>Sun, 09 Sep 2007 02:59:56 +0000</pubDate>
		<dc:creator>chiangkl</dc:creator>
				<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://greatool.wordpress.com/2007/09/09/open-source-database/</guid>
		<description><![CDATA[Choice of Open Source Databases : PostgreSQL MySQL Firebird<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=greatool.wordpress.com&amp;blog=1679534&amp;post=3&amp;subd=greatool&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Choice of Open Source Databases :</p>
<ul>
<li>PostgreSQL</li>
<li>MySQL</li>
<li>Firebird</li>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/greatool.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/greatool.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/greatool.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/greatool.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/greatool.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/greatool.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/greatool.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/greatool.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/greatool.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/greatool.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/greatool.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/greatool.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/greatool.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/greatool.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/greatool.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/greatool.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=greatool.wordpress.com&amp;blog=1679534&amp;post=3&amp;subd=greatool&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://greatool.wordpress.com/2007/09/09/open-source-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5feb7b22f52531b0feda718ac5abb33a?s=96&#38;d=identicon" medium="image">
			<media:title type="html">chiangkl</media:title>
		</media:content>
	</item>
	</channel>
</rss>
