<?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>silverline</title>
	<atom:link href="http://silvernight.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://silvernight.wordpress.com</link>
	<description>My Findings...</description>
	<lastBuildDate>Mon, 22 Dec 2008 12:13:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='silvernight.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>silverline</title>
		<link>http://silvernight.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://silvernight.wordpress.com/osd.xml" title="silverline" />
	<atom:link rel='hub' href='http://silvernight.wordpress.com/?pushpress=hub'/>
		<item>
		<title>SQL Query examples Date-Time Difference</title>
		<link>http://silvernight.wordpress.com/2008/12/22/sql-query-examples-date-time-difference/</link>
		<comments>http://silvernight.wordpress.com/2008/12/22/sql-query-examples-date-time-difference/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 12:13:06 +0000</pubDate>
		<dc:creator>venkat</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Code Samples]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[dateTime Diff.]]></category>

		<guid isPermaLink="false">http://silvernight.wordpress.com/?p=27</guid>
		<description><![CDATA[SQL Server examples,  Date-Time Difference<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=silvernight.wordpress.com&amp;blog=1499437&amp;post=27&amp;subd=silvernight&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://silvernight.wordpress.com/2008/12/22/sql-query-examples-date-time-difference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3db8d747d18525064ecde002a24bccd6?s=96&#38;d=identicon" medium="image">
			<media:title type="html">venkat</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL Views</title>
		<link>http://silvernight.wordpress.com/2007/12/22/sql-views/</link>
		<comments>http://silvernight.wordpress.com/2007/12/22/sql-views/#comments</comments>
		<pubDate>Sat, 22 Dec 2007 07:12:31 +0000</pubDate>
		<dc:creator>venkat</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Views]]></category>

		<guid isPermaLink="false">http://silvernight.wordpress.com/2007/12/22/sql-views/</guid>
		<description><![CDATA[SELECT CASE ISNULL(o.clientcode, &#8221;) WHEN &#8221; THEN TA.CLIENTCODE ELSE O.CLIENTCODE END AS CLIENTCODE, CASE ISNULL(o.exchange, &#8221;) WHEN &#8221; THEN TA.exchange ELSE o.exchange END AS exchange, CASE isnull(o.scrip, &#8221;) WHEN &#8221; THEN TA.scrip ELSE o.scrip END AS scrip, CASE isnull(o.buysellindicator, &#8221;) WHEN &#8221; THEN TA.buysellindicator ELSE o.buysellindicator END AS buysellindicator, ISNULL(o.TotalQuantity, 0) + ISNULL(TA.AverageQuantity, 0) AS [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=silvernight.wordpress.com&amp;blog=1499437&amp;post=24&amp;subd=silvernight&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://silvernight.wordpress.com/2007/12/22/sql-views/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3db8d747d18525064ecde002a24bccd6?s=96&#38;d=identicon" medium="image">
			<media:title type="html">venkat</media:title>
		</media:content>
	</item>
		<item>
		<title>comm. between tires &#8211; 2</title>
		<link>http://silvernight.wordpress.com/2007/12/21/comm-between-tires-2/</link>
		<comments>http://silvernight.wordpress.com/2007/12/21/comm-between-tires-2/#comments</comments>
		<pubDate>Fri, 21 Dec 2007 11:35:02 +0000</pubDate>
		<dc:creator>venkat</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[comm. tires]]></category>

		<guid isPermaLink="false">http://silvernight.wordpress.com/2007/12/21/comm-between-tires-2/</guid>
		<description><![CDATA[Data Access Layer (DAL) /// Execute Stored Procedures &#8211; Dataset Functionality public static DataSet ExecuteSP(string SP_Name, string conn, SqlParameter[] PKParameters){ try { DataSet ds = SqlHelper.ExecuteDataset(conn, CommandType.StoredProcedure, SP_Name, PKParameters); return ds; } catch (Exception ex) { throw (ex); }}Business Logic Layer (BLL)public DataSet ExecuteSP(string SP_Name, string conn, SqlParameter[] PKParameters){ try { return DataSetDAO.ExecuteSP(SP_Name, conn, PKParameters); [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=silvernight.wordpress.com&amp;blog=1499437&amp;post=23&amp;subd=silvernight&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://silvernight.wordpress.com/2007/12/21/comm-between-tires-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3db8d747d18525064ecde002a24bccd6?s=96&#38;d=identicon" medium="image">
			<media:title type="html">venkat</media:title>
		</media:content>
	</item>
		<item>
		<title>Communication Between tires</title>
		<link>http://silvernight.wordpress.com/2007/12/19/communication-between-tires/</link>
		<comments>http://silvernight.wordpress.com/2007/12/19/communication-between-tires/#comments</comments>
		<pubDate>Wed, 19 Dec 2007 12:26:30 +0000</pubDate>
		<dc:creator>venkat</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ADO.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[comm. tires]]></category>
		<category><![CDATA[Passing Values]]></category>

		<guid isPermaLink="false">http://silvernight.wordpress.com/2007/12/19/communication-between-tires/</guid>
		<description><![CDATA[Data Access Layer namespace EnVue.DataAccessLayer { public class RDLCrackerDAO { /// &#60;summary&#62; Get the report related info from SSRS Catalog Table&#60;/summary&#62; /// &#60;returns&#62;dataset&#60;/returns&#62; public static DataSet GetSSRSCatalogTablerecord(string reportpath, string reportingServerConnectionString) { // Get SSRS Catalog table record for the given _reportID string cmdCatalog = &#8220;SELECT Content, ItemID FROM Catalog WHERE Path =&#8217;&#8221; + reportpath + [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=silvernight.wordpress.com&amp;blog=1499437&amp;post=22&amp;subd=silvernight&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://silvernight.wordpress.com/2007/12/19/communication-between-tires/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3db8d747d18525064ecde002a24bccd6?s=96&#38;d=identicon" medium="image">
			<media:title type="html">venkat</media:title>
		</media:content>
	</item>
		<item>
		<title>The Convert Class : Conversion Made Easy in .NET</title>
		<link>http://silvernight.wordpress.com/2007/12/18/the-convert-class-conversion-made-easy-in-net/</link>
		<comments>http://silvernight.wordpress.com/2007/12/18/the-convert-class-conversion-made-easy-in-net/#comments</comments>
		<pubDate>Tue, 18 Dec 2007 12:03:36 +0000</pubDate>
		<dc:creator>venkat</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Type Conversions]]></category>

		<guid isPermaLink="false">http://silvernight.wordpress.com/2007/12/18/the-convert-class-conversion-made-easy-in-net/</guid>
		<description><![CDATA[The convert class is used to covert from one data type to another. Most of the common conversions can be done by using this class. Here are it&#8217;s major members. Member Description Accept IsDBNull, all of the members are overloaded. Now smart idea here is that each member converts everything to what it is suppose [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=silvernight.wordpress.com&amp;blog=1499437&amp;post=21&amp;subd=silvernight&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://silvernight.wordpress.com/2007/12/18/the-convert-class-conversion-made-easy-in-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3db8d747d18525064ecde002a24bccd6?s=96&#38;d=identicon" medium="image">
			<media:title type="html">venkat</media:title>
		</media:content>
	</item>
	</channel>
</rss>
