<?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/"
	>

<channel>
	<title>Coder Circle &#187; database programming</title>
	<atom:link href="http://www.codercircle.com/tag/database_programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codercircle.com</link>
	<description>Your Path for Knowledge to Wisdom</description>
	<lastBuildDate>Tue, 04 May 2010 01:26:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Loop in PL/SQL</title>
		<link>http://www.codercircle.com/database/loop_in_plsql/</link>
		<comments>http://www.codercircle.com/database/loop_in_plsql/#comments</comments>
		<pubDate>Fri, 25 Jan 2008 07:30:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[database programming]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[PL/SQL]]></category>
		<category><![CDATA[while loop]]></category>

		<guid isPermaLink="false">http://www.codercircle.com/index.php/2008/01/25/loop_in_plsql/</guid>
		<description><![CDATA[The example given below shows a While Loop. Here the value of the variable I is checked to ascertain whether it is less than 10 and as long as it is so the body of the loop will be executed.
DECLARE
I NUMBER (4) :=0;
BEGIN
WHILE (I&#60;10)
LOOP
I:= I+1;
DBMS_OUTPUT.PUT_LINE (I);
END LOOP;
END;
]]></description>
		<wfw:commentRss>http://www.codercircle.com/database/loop_in_plsql/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
