<?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>Virat Kothari&#039;s Blog</title>
	<atom:link href="http://viratkothari.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://viratkothari.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Sun, 10 Apr 2011 19:05:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='viratkothari.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Virat Kothari&#039;s Blog</title>
		<link>http://viratkothari.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://viratkothari.wordpress.com/osd.xml" title="Virat Kothari&#039;s Blog" />
	<atom:link rel='hub' href='http://viratkothari.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Introduction to CLR Stored Procedures and creating it step by step</title>
		<link>http://viratkothari.wordpress.com/2009/06/15/introduction-to-clr-stored-procedures-and-creating-it-step-by-step/</link>
		<comments>http://viratkothari.wordpress.com/2009/06/15/introduction-to-clr-stored-procedures-and-creating-it-step-by-step/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 06:36:15 +0000</pubDate>
		<dc:creator>Virat Kothari</dc:creator>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[clr]]></category>
		<category><![CDATA[step by step clr]]></category>
		<category><![CDATA[stored procedure]]></category>
		<category><![CDATA[virat kothari]]></category>
		<category><![CDATA[viratkothari]]></category>

		<guid isPermaLink="false">http://viratkothari.wordpress.com/2009/06/15/introduction-to-clr-stored-procedures-and-creating-it-step-by-step/</guid>
		<description><![CDATA[Download code &#38; SQL statements:   Introduction: We usually face problem in Stored Procedures and other database object when we need to implement some complicated logic within it. We found inefficient performance when we try to implement complex logic &#38; business rules in database objects. In many cases we found C# or VB classes more powerful [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=viratkothari.wordpress.com&amp;blog=8178888&amp;post=13&amp;subd=viratkothari&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h5><span style="color:#000000;">Download code &amp; SQL statements:   <a href="http://dev.digi-corp.com/wp-content/uploads/2009/06/CLRDemo.zip"><img class="alignnone size-full wp-image-26" title="BlueDownArrow" src="http://viratkothari.files.wordpress.com/2009/06/bluedownarrow.jpeg?w=450" alt="BlueDownArrow"   /></a><br />
</span></h5>
<h2><span style="color:#333399;">Introduction:</span></h2>
<p style="text-align:justify;">We usually face problem in Stored Procedures and other database object when we need to implement some complicated logic within it. We found inefficient performance when we try to implement complex logic &amp; business rules in database objects. In many cases we found C# or VB classes more powerful to implement such things. Microsoft has launched a new concept to resolve such issues with SQL server 2005 called &#8220;CLR Stored Procedure&#8221;.</p>
<h2><span style="color:#333399;">What is CLR Stored Procedure?</span></h2>
<p style="text-align:justify;">Now, let us understand CLR stored procedure. CLR as most of .Net programmer knows is Common Language Runtime and Stored Procedures are routine stored procedures of database. Thus, CLR Stored Procedures are combination of both. As we all know, Common Language Runtime is core .Net component. The Common Language Runtime is runtime execution environment which supplies managed code with various services like cross language integration, code access security, lifetime management of object, resources management, threading, debugging &amp; type safety etc. So now, CLR Stored Procedures are .Net objects which run in the memory of database.</p>
<p style="text-align:justify;">The very first usage of CLR Stored Procedures can be said accessing system resources. Accessing system resources could also be done using Extended Stored Procedures which are again database object like Stored Procedures, Functions etc. Extended Stored Procedures can do most of the things which a standard executable program can do. Then, why are CLR Stored Procedures? The very first advantage of CLR Stored Procedures is it is a managed object unlike Extended Stored Procedures, which are unmanaged objects. The common thing between them is both runs under database memory. In this way CLR Stored Procedures gives all the benefits of managed objects. Following screen explains memory allocation while execution of CLR Stored Procedure.</p>
<p style="text-align:justify;"><img src="http://viratkothari.files.wordpress.com/2009/06/061509_0636_introductio1.png?w=450" alt="" /></p>
<h2><span style="color:#333399;">When should I use CLR Stored Procedure?</span></h2>
<p style="text-align:justify;">Extended stored procedures run in the same process space as the database engine, memory leaks, bugs etc., can affects the performance of database engine. CLR stored procedures resolves these issues as they are managed object and runs per specifications of Common Language Runtime. CLR Stored Procedures can replace a standard stored procedure that contains complex logic and business rules. CLR Stored Procedures takes benefit of .Net classes and thus makes easy to implement complex logic, calculation, intense string operations, complex iterations, data encryptions etc., that are difficult to obtain in standard stored procedures. Standard stored procedures are still best for data oriented tasks. CLR Stored Procedures not only includes stored procedures but also includes Functions, Triggers etc. CLR Stored Procedures are compiled one so gives better performance.</p>
<h2><span style="color:#333399;">Benefits of CLR Stored Procedures:</span></h2>
<ol>
<li>Gives better results while executing complex logic, intense string operation or string manipulations, cryptography, accessing system resources and file management etc.</li>
<li>CLR Stored Procedures are managed codes so ensures type safety, memory management etc.</li>
<li>Better code management and provides object oriented programming capability thus enables encapsulation, polymorphism &amp; inheritance.</li>
<li>Convenient for programmer as CLR Stored Procedures can be written in C#, VB or any other language that .Net Framework supports.</li>
<li>CLR Stored Procedures can also be used with Oracle 10g Release 2 or later versions.</li>
</ol>
<h2><span style="color:#333399;">Drawbacks of CLR Stored Procedures:</span></h2>
<ol>
<li>Not convenient in all contexts for e.g. it should not be used to execute simple queries. In that case standard stored procedures give better results.</li>
<li>Deployment may be difficult in some scenarios.</li>
</ol>
<h2><span style="color:#333399;">Standard Stored Procedures vs. CLR Stored Procedures:</span></h2>
<p>You are the best judge when to use regular Stored Procedures and when to use CLR Stored Procedures. CLR Stored Procedures can be used in following scenarios.</p>
<ol>
<li>When the program requires complex logic or business rules.</li>
<li>When the flow is CPU intensive. CLR Stored Procedures gives better results as they are in complied form and managed one.</li>
<li>The tasks which are not possible in TSQL, accessing system resources, cryptography, accessing web services etc.</li>
<li>In option of Extended Stored Procedures. One should always consider CLR Stored Procedures before going for Extended Stored Procedures.</li>
<li>An operation requires higher data safety.</li>
</ol>
<h2><span style="color:#333399;">Creating CLR Stored Procedure step by step:</span></h2>
<p>Let us create one simple CLR Stored Procedure which fetches all the rows from one table of the database. I have listed all SQL statement used for creating database, creating table, inserting dummy records in the table etc., under &#8220;SQL statements used in the demo&#8221; section.</p>
<p><strong>Application development specification:<br />
</strong></p>
<ul>
<li>IDE: Visual Studio 2008</li>
<li>Framework: 3.5 with SP 1</li>
<li>Language: C# 3.0</li>
<li>Database MS SQL Server 2005 Express edition</li>
</ul>
<p><strong>Steps to create CLR Stored Procedure:</strong></p>
<p><strong><br />
</strong></p>
<p>1) Open Microsoft Visual Studio &gt;&gt; Click on New Project &gt;&gt; Select Database Projects &gt;&gt; SQL Server Project.</p>
<p style="text-align:justify;"><img src="http://viratkothari.files.wordpress.com/2009/06/061509_0636_introductio2.png?w=450" alt="" /></p>
<p style="text-align:justify;">
<p style="text-align:justify;">2) You can choose reference of existing database connection or click on Add New Reference.</p>
<p style="text-align:justify;"><img src="http://viratkothari.files.wordpress.com/2009/06/061509_0636_introductio3.png?w=450" alt="" /></p>
<p style="text-align:justify;">
<p style="text-align:justify;">3) If you selects from existing references skit step 3 else add new database reference as shown in following image and click on Test Connection to test the connection.</p>
<p style="text-align:justify;"><img src="http://viratkothari.files.wordpress.com/2009/06/061509_0636_introductio4.png?w=450" alt="" /></p>
<p style="text-align:justify;">
<p style="text-align:justify;">4) On clicking on OK button, Visual Studio will ask you to enable SQL/CLR debugging on the selected connection. You can select &#8220;Yes&#8221; to enable debugging or &#8220;No&#8221; to disable the same.</p>
<p style="text-align:justify;"><img src="http://viratkothari.files.wordpress.com/2009/06/061509_0636_introductio5.png?w=450" alt="" /></p>
<p style="text-align:justify;">
<p style="text-align:justify;">5) Once the database reference and debugging option is selected, the project will be displayed in Solution Explorer. Select the project and right click on Solution Explorer &gt;&gt; Click on Add &gt;&gt; Stored Procedure.</p>
<p><img src="http://viratkothari.files.wordpress.com/2009/06/061509_0636_introductio6.png?w=450" alt="" /></p>
<p>6) Add new procedure from the installed templates as shown in following screen. Give proper name to it.</p>
<p style="text-align:justify;"><img src="http://viratkothari.files.wordpress.com/2009/06/061509_0636_introductio7.png?w=450" alt="" /></p>
<p style="text-align:justify;">
<p style="text-align:justify;">7) Once you select the template, it will create .cs file with the content shown in following image.</p>
<p style="text-align:justify;"><img src="http://viratkothari.files.wordpress.com/2009/06/061509_0636_introductio8.png?w=450" alt="" /></p>
<p style="text-align:justify;">
<p>8 ) Add following code in the method already created. Pass <span style="color:#a31515;font-family:Courier New;font-size:10pt;">&#8220;context connection=true&#8221; </span>as connection string in the constructor while creating new SqlConnection. This CLR stored procedure is going to be the part of the database, so it will be the internal part of database so no need to connect database externally. So, no need to provide connection string that we usually provide in applications. Then Click on Build menu &gt;&gt; Click on Build Solution. Also click on Build menu &gt;&gt; Deploy solution. This will deploy the assembly to the database for which we have made connection initially.</p>
<p style="text-align:justify;"><img src="http://viratkothari.files.wordpress.com/2009/06/061509_0636_introductio9.png?w=450" alt="" /></p>
<p style="text-align:justify;">
<p style="text-align:justify;">9) Now, select the database &gt;&gt; Programmability. Right click on Stored Procedures &gt;&gt; Click on Refresh. The list of Stored Procedures should show one newly added stored procedure. Also right click on Assemblies &gt;&gt; click on Refresh. This should show newly added Assembly. Also, enable CLR Stored Procedure by following query.<span style="font-family:Courier New;font-size:10pt;"><span style="color:maroon;"> </span></span></p>
<p style="text-align:justify;"><span style="font-family:Courier New;font-size:10pt;"><span style="color:maroon;">sp_configure</span> <span style="color:red;">&#8216;clr enabled&#8217;</span><span style="color:gray;">, 1</span> </span></p>
<p style="text-align:justify;">Run following query to take effect or above query.<span style="color:blue;font-family:Courier New;font-size:10pt;"> </span></p>
<p style="text-align:justify;"><span style="color:blue;font-family:Courier New;font-size:10pt;">RECONFIGURE</span></p>
<p style="text-align:justify;">Now, execute the stored procedure. It should give similar results shown in following screen.</p>
<p style="text-align:justify;"><img src="http://viratkothari.files.wordpress.com/2009/06/061509_0636_introductio10.png?w=450" alt="" /></p>
<p style="text-align:justify;">
<h2><span style="color:#333399;">SQL statements used in the demo:</span></h2>
<p>Following is the queries to create database, create table, insert records in the table etc.</p>
<p><span style="color:green;font-family:Courier New;font-size:10pt;">&#8211;Create a new databse for demo<br />
</span></p>
<p><span style="font-family:Courier New;font-size:10pt;"><span style="color:blue;">CREATE</span><br />
<span style="color:blue;">DATABASE</span> DbForClrDemo<br />
</span></p>
<p><span style="color:green;font-family:Courier New;font-size:10pt;">&#8211;Use database<br />
</span></p>
<p><span style="font-family:Courier New;font-size:10pt;"><span style="color:blue;">USE</span> DbForClrDemo<br />
</span></p>
<p><span style="color:green;font-family:Courier New;font-size:10pt;">&#8211;Create table for CustomerSalesInformation<br />
</span></p>
<p><span style="font-family:Courier New;font-size:10pt;"><span style="color:blue;">CREATE</span><br />
<span style="color:blue;">TABLE</span> [dbo]<span style="color:gray;">.</span>[CustomerSalesInformation]<span style="color:gray;">(<br />
</span></span></p>
<p><span style="font-family:Courier New;font-size:10pt;"> [Id] [int] <span style="color:blue;">IDENTITY</span><span style="color:gray;">(</span>1<span style="color:gray;">,</span>1<span style="color:gray;">)</span><br />
<span style="color:gray;">NOT</span><br />
<span style="color:gray;">NULL,<br />
</span></span></p>
<p><span style="font-family:Courier New;font-size:10pt;"> [Name] [varchar]<span style="color:gray;">(</span>50<span style="color:gray;">)</span><br />
<span style="color:gray;">NOT</span><br />
<span style="color:gray;">NULL,<br />
</span></span></p>
<p><span style="font-family:Courier New;font-size:10pt;"> [Sales] [decimal]<span style="color:gray;">(</span>18<span style="color:gray;">,</span> 2<span style="color:gray;">)</span><br />
<span style="color:gray;">NOT</span><br />
<span style="color:gray;">NULL</span><br />
<span style="color:blue;">DEFAULT</span><br />
<span style="color:gray;">((</span>0<span style="color:gray;">)),<br />
</span></span></p>
<p><span style="font-family:Courier New;font-size:10pt;"><br />
<span style="color:blue;">CONSTRAINT</span> [PK_CustomerSalesInformation] <span style="color:blue;">PRIMARY</span><br />
<span style="color:blue;">KEY</span><br />
<span style="color:blue;">CLUSTERED</span><br />
</span></p>
<p><span style="color:gray;font-family:Courier New;font-size:10pt;">(<br />
</span></p>
<p><span style="font-family:Courier New;font-size:10pt;"> [Id] <span style="color:blue;">ASC<br />
</span></span></p>
<p><span style="font-family:Courier New;font-size:10pt;"><span style="color:gray;">)</span><span style="color:blue;">WITH</span><br />
<span style="color:gray;">(</span>PAD_INDEX  <span style="color:gray;">=</span><br />
<span style="color:blue;">OFF</span><span style="color:gray;">,</span> IGNORE_DUP_KEY <span style="color:gray;">=</span><br />
<span style="color:blue;">OFF</span><span style="color:gray;">)</span><br />
<span style="color:blue;">ON</span> [PRIMARY]<br />
</span></p>
<p><span style="font-family:Courier New;font-size:10pt;"><span style="color:gray;">)</span><br />
<span style="color:blue;">ON</span> [PRIMARY]<br />
</span></p>
<p><span style="color:green;font-family:Courier New;font-size:10pt;">&#8211;Insert dummy data to CustomerSalesInformation table<br />
</span></p>
<p><span style="font-family:Courier New;font-size:10pt;"><span style="color:blue;">INSERT</span><br />
<span style="color:blue;">INTO</span> [dbo]<span style="color:gray;">.</span>[CustomerSalesInformation]<span style="color:gray;">(</span>[Name]<span style="color:gray;">,</span> [Sales]<span style="color:gray;">)</span><br />
<span style="color:blue;">VALUES</span><br />
<span style="color:gray;">(</span><span style="color:red;">&#8216;Virat Kothari&#8217;</span><span style="color:gray;">,</span> 50000<span style="color:gray;">)<br />
</span></span></p>
<p><span style="font-family:Courier New;font-size:10pt;"><span style="color:blue;">INSERT</span><br />
<span style="color:blue;">INTO</span> [dbo]<span style="color:gray;">.</span>[CustomerSalesInformation]<span style="color:gray;">(</span>[Name]<span style="color:gray;">,</span> [Sales]<span style="color:gray;">)</span><br />
<span style="color:blue;">VALUES</span><br />
<span style="color:gray;">(</span><span style="color:red;">&#8216;Dhruval Shah&#8217;</span><span style="color:gray;">,</span> 5000<span style="color:gray;">)<br />
</span></span></p>
<p><span style="font-family:Courier New;font-size:10pt;"><span style="color:blue;">INSERT</span><br />
<span style="color:blue;">INTO</span> [dbo]<span style="color:gray;">.</span>[CustomerSalesInformation]<span style="color:gray;">(</span>[Name]<span style="color:gray;">,</span> [Sales]<span style="color:gray;">)</span><br />
<span style="color:blue;">VALUES</span><br />
<span style="color:gray;">(</span><span style="color:red;">&#8216;Urvish Sheth&#8217;</span><span style="color:gray;">,</span> 15000<span style="color:gray;">)<br />
</span></span></p>
<p><span style="font-family:Courier New;font-size:10pt;"><span style="color:blue;">INSERT</span><br />
<span style="color:blue;">INTO</span> [dbo]<span style="color:gray;">.</span>[CustomerSalesInformation]<span style="color:gray;">(</span>[Name]<span style="color:gray;">,</span> [Sales]<span style="color:gray;">)</span><br />
<span style="color:blue;">VALUES</span><br />
<span style="color:gray;">(</span><span style="color:red;">&#8216;Rakesh Bajania&#8217;</span><span style="color:gray;">,</span> 25000<span style="color:gray;">)<br />
</span></span></p>
<p><span style="font-family:Courier New;font-size:10pt;"><span style="color:blue;">INSERT</span><br />
<span style="color:blue;">INTO</span> [dbo]<span style="color:gray;">.</span>[CustomerSalesInformation]<span style="color:gray;">(</span>[Name]<span style="color:gray;">,</span> [Sales]<span style="color:gray;">)</span><br />
<span style="color:blue;">VALUES</span><br />
<span style="color:gray;">(</span><span style="color:red;">&#8216;Dhaval Shah&#8217;</span><span style="color:gray;">,</span> 150000<span style="color:gray;">)<br />
</span></span></p>
<p><span style="color:green;font-family:Courier New;font-size:10pt;">&#8211;Enable CLR Stored Procedure in database<br />
</span></p>
<p><span style="font-family:Courier New;font-size:10pt;"><span style="color:maroon;">sp_configure </span><span style="color:red;">&#8216;clr enabled&#8217;</span><span style="color:gray;">,</span> 1<br />
</span></p>
<p><span style="color:green;font-family:Courier New;font-size:10pt;">&#8211;Run following statuement to take effect of above statement<br />
</span></p>
<p><span style="color:blue;font-family:Courier New;font-size:10pt;">RECONFIGURE<br />
</span></p>
<p><span style="color:green;font-family:Courier New;font-size:10pt;">&#8211;Now execute our CLR Stored Procedure. Remember &#8220;ClrDemo&#8221; is name of our Stored Procedure<br />
</span></p>
<p><span style="font-family:Courier New;font-size:10pt;"><span style="color:blue;">EXEC</span> [dbo]<span style="color:gray;">.</span>ClrDemo<br />
</span></p>
<h2><span style="color:#333399;">Conclusion:</span></h2>
<p>CLR Stored procedures are very simple and can be used in most complex scenarios.</p>
<h2><span style="color:#333399;">Bibliography:</span></h2>
<ol>
<li>MSDN (http://msdn.microsoft.com/en-us/library/ms131094.aspx)</li>
<li>Code project</li>
<li>http://searchsqlserver.techtarget.com/generic/0,295582,sid87_gci1251402,00.html</li>
</ol>
<h2><span style="color:#333399;">Also refer:</span></h2>
<ol>
<li><a href="http://blog.digi-corp.com/2009/05/seminar-on-net-framework-and-silverlight-basics/">http://blog.digi-corp.com/2009/05/seminar-on-net-framework-and-silverlight-basics/</a></li>
<li><a href="http://dev.digi-corp.com/2009/06/clr-stored-procedures-and-creating-it-step-by-step/">http://dev.digi-corp.com/2009/06/clr-stored-procedures-and-creating-it-step-by-step/</a></li>
<li><a href="http://www.codeproject.com/KB/cs/CLR_Stored_Procedure.aspx">http://www.codeproject.com/KB/cs/CLR_Stored_Procedure.aspx</a></li>
</ol>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/viratkothari.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/viratkothari.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/viratkothari.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/viratkothari.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/viratkothari.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/viratkothari.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/viratkothari.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/viratkothari.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/viratkothari.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/viratkothari.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/viratkothari.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/viratkothari.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/viratkothari.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/viratkothari.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=viratkothari.wordpress.com&amp;blog=8178888&amp;post=13&amp;subd=viratkothari&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://viratkothari.wordpress.com/2009/06/15/introduction-to-clr-stored-procedures-and-creating-it-step-by-step/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6bac7a88789a346161c8d96fd8ff1e8a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Virat Kothari</media:title>
		</media:content>

		<media:content url="http://viratkothari.files.wordpress.com/2009/06/bluedownarrow.jpeg" medium="image">
			<media:title type="html">BlueDownArrow</media:title>
		</media:content>

		<media:content url="http://viratkothari.files.wordpress.com/2009/06/061509_0636_introductio1.png" medium="image" />

		<media:content url="http://viratkothari.files.wordpress.com/2009/06/061509_0636_introductio2.png" medium="image" />

		<media:content url="http://viratkothari.files.wordpress.com/2009/06/061509_0636_introductio3.png" medium="image" />

		<media:content url="http://viratkothari.files.wordpress.com/2009/06/061509_0636_introductio4.png" medium="image" />

		<media:content url="http://viratkothari.files.wordpress.com/2009/06/061509_0636_introductio5.png" medium="image" />

		<media:content url="http://viratkothari.files.wordpress.com/2009/06/061509_0636_introductio6.png" medium="image" />

		<media:content url="http://viratkothari.files.wordpress.com/2009/06/061509_0636_introductio7.png" medium="image" />

		<media:content url="http://viratkothari.files.wordpress.com/2009/06/061509_0636_introductio8.png" medium="image" />

		<media:content url="http://viratkothari.files.wordpress.com/2009/06/061509_0636_introductio9.png" medium="image" />

		<media:content url="http://viratkothari.files.wordpress.com/2009/06/061509_0636_introductio10.png" medium="image" />
	</item>
	</channel>
</rss>
