<?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: Introduction to Nullable Types in VB.NET</title>
	<atom:link href="http://vbnotebookfor.net/2007/09/27/introduction-to-nullable-types-in-vbnet/feed/" rel="self" type="application/rss+xml" />
	<link>http://vbnotebookfor.net/2007/09/27/introduction-to-nullable-types-in-vbnet/</link>
	<description>Articles on VB.NET and Software Development Team Leadership</description>
	<pubDate>Tue, 07 Sep 2010 02:00:16 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: AussiePete</title>
		<link>http://vbnotebookfor.net/2007/09/27/introduction-to-nullable-types-in-vbnet/comment-page-1/#comment-1451</link>
		<dc:creator>AussiePete</dc:creator>
		<pubDate>Sun, 14 Feb 2010 03:01:25 +0000</pubDate>
		<guid isPermaLink="false">http://vbnotebookfor.net/2007/09/27/introduction-to-nullable-types-in-vbnet/#comment-1451</guid>
		<description>Thanks Guys,

I've been struggling with this for a day and half !!</description>
		<content:encoded><![CDATA[<p>Thanks Guys,</p>
<p>I&#8217;ve been struggling with this for a day and half !!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://vbnotebookfor.net/2007/09/27/introduction-to-nullable-types-in-vbnet/comment-page-1/#comment-1405</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Fri, 02 Oct 2009 21:49:56 +0000</pubDate>
		<guid isPermaLink="false">http://vbnotebookfor.net/2007/09/27/introduction-to-nullable-types-in-vbnet/#comment-1405</guid>
		<description>Very nice, ive been using Strings to hold my nullable date columns. Not very elegant but it did the trick. I can now go back and fix all of those.

Thank you very much!</description>
		<content:encoded><![CDATA[<p>Very nice, ive been using Strings to hold my nullable date columns. Not very elegant but it did the trick. I can now go back and fix all of those.</p>
<p>Thank you very much!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hobbylobby</title>
		<link>http://vbnotebookfor.net/2007/09/27/introduction-to-nullable-types-in-vbnet/comment-page-1/#comment-1172</link>
		<dc:creator>hobbylobby</dc:creator>
		<pubDate>Sun, 27 Jul 2008 13:10:21 +0000</pubDate>
		<guid isPermaLink="false">http://vbnotebookfor.net/2007/09/27/introduction-to-nullable-types-in-vbnet/#comment-1172</guid>
		<description>you show getting values from a database, but not setting values to a database.

here’s one way:

If theDate.HasValue Then
cmd.Parameters.Add( _
  New OleDb.OleDbParameter(”@theDate”, theDate))
Else
cmd.Parameters.Add( _
  New OleDb.OleDbParameter(”@theDate”, DBNull.Value))
End If</description>
		<content:encoded><![CDATA[<p>you show getting values from a database, but not setting values to a database.</p>
<p>here’s one way:</p>
<p>If theDate.HasValue Then<br />
cmd.Parameters.Add( _<br />
  New OleDb.OleDbParameter(”@theDate”, theDate))<br />
Else<br />
cmd.Parameters.Add( _<br />
  New OleDb.OleDbParameter(”@theDate”, DBNull.Value))<br />
End If</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kris Kraus</title>
		<link>http://vbnotebookfor.net/2007/09/27/introduction-to-nullable-types-in-vbnet/comment-page-1/#comment-1128</link>
		<dc:creator>Kris Kraus</dc:creator>
		<pubDate>Thu, 05 Jun 2008 20:26:51 +0000</pubDate>
		<guid isPermaLink="false">http://vbnotebookfor.net/2007/09/27/introduction-to-nullable-types-in-vbnet/#comment-1128</guid>
		<description>Good job.  Thanks.</description>
		<content:encoded><![CDATA[<p>Good job.  Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sami</title>
		<link>http://vbnotebookfor.net/2007/09/27/introduction-to-nullable-types-in-vbnet/comment-page-1/#comment-1042</link>
		<dc:creator>Sami</dc:creator>
		<pubDate>Wed, 26 Mar 2008 04:28:05 +0000</pubDate>
		<guid isPermaLink="false">http://vbnotebookfor.net/2007/09/27/introduction-to-nullable-types-in-vbnet/#comment-1042</guid>
		<description>nice expalanation</description>
		<content:encoded><![CDATA[<p>nice expalanation</p>
]]></content:encoded>
	</item>
</channel>
</rss>
