<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" gd:etag="W/&quot;CEcNSHw5cCp7ImA9WhRRFEk.&quot;"><id>tag:blogger.com,1999:blog-932412677024816772</id><updated>2011-11-27T17:01:39.228-08:00</updated><title>Beginner's mind</title><subtitle type="html" /><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://cfinterface.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://cfinterface.blogspot.com/" /><author><name>rachaladinesh</name><uri>http://www.blogger.com/profile/06733643006140826694</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://4.bp.blogspot.com/_OMh1xdnrVko/S5cQn0VbxhI/AAAAAAAAFYM/qy2nbg83NHU/S220/Img.jpg" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>2</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/blogspot/TVDZ" /><feedburner:info uri="blogspot/tvdz" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><entry gd:etag="W/&quot;CkABR3s8eip7ImA9WxBbE0k.&quot;"><id>tag:blogger.com,1999:blog-932412677024816772.post-7960820883919183012</id><published>2010-03-11T12:49:00.001-08:00</published><updated>2010-03-11T12:52:36.572-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-11T12:52:36.572-08:00</app:edited><title>Cfloop over File, Array, List..</title><content type="html">Today while I was working I came across cfloop which I think a cool feature in CF&lt;br /&gt;
&lt;br /&gt;
Cfloop can perform on &lt;br /&gt;
&amp;gt;Array&lt;br /&gt;
&amp;gt;Collection&lt;br /&gt;
&amp;gt;File&lt;br /&gt;
&amp;gt;List&lt;br /&gt;
&amp;gt;Query and there are some other loops like index loop, condition loop, loop over date and time...&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Index Loop:&lt;/strong&gt;&lt;br /&gt;
&amp;lt;cfloop from="1" to="10" index="A"&amp;gt;&amp;lt;cfoutput&amp;gt;#A#&amp;lt;/cfoutput&amp;gt;&amp;lt;/cfloop&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Condition Loop:&lt;/strong&gt;&lt;br /&gt;
&amp;lt;cfset Count = 0&amp;gt; here we are setting condition&lt;br /&gt;
&amp;lt;cfloop condition = "Count EQ 5"&amp;gt;&lt;br /&gt;
&amp;lt;cfset CountVar = CountVar + 1&amp;gt;&lt;br /&gt;
The loop is &amp;lt;cfoutput&amp;gt;#Count#&amp;lt;/cfoutput&amp;gt;&lt;br /&gt;
&amp;lt;/cfloop&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Query Loop:&lt;/strong&gt;&lt;br /&gt;
&amp;lt;cfquery name = "Q" dataSource = "ABC"&amp;gt; &lt;br /&gt;
SELECT * FROM TABLE&lt;br /&gt;
&amp;lt;/cfquery&amp;gt;&lt;br /&gt;
&amp;lt;cfloop query = "Q"&amp;gt; &lt;br /&gt;
&amp;lt;cfoutput&amp;gt;#Name#&amp;lt;/cfoutput&amp;gt;&lt;br /&gt;
&amp;lt;/cfloop&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;List Loop:&lt;/strong&gt;&lt;br /&gt;
&amp;lt;cfset B = "Apple, Rose, Car"&amp;gt; Declaring List&lt;br /&gt;
&amp;lt;cfloop list="#B#" index="C" delimiters=","&amp;gt;&lt;br /&gt;
&amp;lt;cfoutput&amp;gt;#C#&amp;lt;/cfoutput&amp;gt;&lt;br /&gt;
&amp;lt;/cfloop&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Collection/Structure Loop:&lt;/strong&gt;&lt;br /&gt;
&amp;lt;cfset D = StructNew()&amp;gt;&lt;br /&gt;
&amp;lt;cfset V = StructInsert(D,"Apple, Rose, Car")&amp;gt;&lt;br /&gt;
&amp;lt;cfloop collection="#D#" item="E"&amp;gt;&lt;br /&gt;
&amp;lt;cfoutput&amp;gt; #StructFind(D ,E)#&amp;lt;/cfoutput&amp;gt;&lt;br /&gt;
&amp;lt;/cfloop&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;File Loop:&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;em&gt;Just loop entire file:&lt;/em&gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;cfloop file="#File#" index="F"&amp;gt;&lt;br /&gt;
&amp;lt;cfoutput&amp;gt;#F#&amp;lt;/cfoutput&amp;gt;&lt;br /&gt;
&amp;lt;/cfloop&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;em&gt;First 20 Lines&lt;/em&gt;&lt;br /&gt;
&lt;br /&gt;
We can use From and To just as we use in index loop&lt;br /&gt;
&amp;lt;cfloop list="#File#" index="F" to="20"&amp;gt; by default from = 1&lt;br /&gt;
&amp;lt;cfoutput&amp;gt;#F#&amp;lt;/cfoutput&amp;gt;&lt;br /&gt;
&amp;lt;/cfloop&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;em&gt;In a range say from 50 to 75&lt;/em&gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;cfloop list="#File#" index="F" From="50" To="75"&amp;gt;&lt;br /&gt;
&amp;lt;cfoutput&amp;gt;#F#&amp;lt;/cfoutput&amp;gt;&lt;br /&gt;
&amp;lt;/cfloop&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Array Loop:&lt;/strong&gt;&lt;br /&gt;
&amp;lt;cfloop index="M" Array=#G#&amp;gt;&lt;br /&gt;
&amp;lt;cfoutput&amp;gt;#M#&amp;lt;/cfoutput&amp;gt;&lt;br /&gt;
&amp;lt;/cfloop&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/932412677024816772-7960820883919183012?l=cfinterface.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/Y0gzOYVsDvS6doQn1q7PbEcQmK0/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Y0gzOYVsDvS6doQn1q7PbEcQmK0/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/Y0gzOYVsDvS6doQn1q7PbEcQmK0/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Y0gzOYVsDvS6doQn1q7PbEcQmK0/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/TVDZ/~4/zkEtgpHZ_9s" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cfinterface.blogspot.com/feeds/7960820883919183012/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://cfinterface.blogspot.com/2010/03/cfloop-over-file-array-list.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/932412677024816772/posts/default/7960820883919183012?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/932412677024816772/posts/default/7960820883919183012?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/TVDZ/~3/zkEtgpHZ_9s/cfloop-over-file-array-list.html" title="Cfloop over File, Array, List.." /><author><name>rachaladinesh</name><uri>http://www.blogger.com/profile/06733643006140826694</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://4.bp.blogspot.com/_OMh1xdnrVko/S5cQn0VbxhI/AAAAAAAAFYM/qy2nbg83NHU/S220/Img.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://cfinterface.blogspot.com/2010/03/cfloop-over-file-array-list.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Ck4HQX87fCp7ImA9WxBbEUQ.&quot;"><id>tag:blogger.com,1999:blog-932412677024816772.post-989390962036977271</id><published>2010-03-09T18:02:00.000-08:00</published><updated>2010-03-09T19:15:30.104-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-09T19:15:30.104-08:00</app:edited><title>Day 1 Blogging..</title><content type="html">Hi,&lt;div&gt;    Someone said,  &lt;span class="Apple-style-span"  style=" color: rgb(51, 51, 51); line-height: 20px; font-size:small;"&gt;"A beginner's mind takes you where you need to go" , let see where this blogging takes me. Speaking about myself, I am computer programmer with Bachelor and master degree's in Computer Science and Information Technology. I am newbie for programming world, I started this blog to post the code which I developed or came across while I am working.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style=" color: rgb(51, 51, 51); line-height: 20px; font-size:small;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;Dinesh Rachala.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/932412677024816772-989390962036977271?l=cfinterface.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/RqNjGTxzFYIP2Dmdh_Zug_XxdcU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/RqNjGTxzFYIP2Dmdh_Zug_XxdcU/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/RqNjGTxzFYIP2Dmdh_Zug_XxdcU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/RqNjGTxzFYIP2Dmdh_Zug_XxdcU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/TVDZ/~4/KpzcOCbYFmw" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cfinterface.blogspot.com/feeds/989390962036977271/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://cfinterface.blogspot.com/2010/03/day-1-blogging.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/932412677024816772/posts/default/989390962036977271?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/932412677024816772/posts/default/989390962036977271?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/TVDZ/~3/KpzcOCbYFmw/day-1-blogging.html" title="Day 1 Blogging.." /><author><name>rachaladinesh</name><uri>http://www.blogger.com/profile/06733643006140826694</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://4.bp.blogspot.com/_OMh1xdnrVko/S5cQn0VbxhI/AAAAAAAAFYM/qy2nbg83NHU/S220/Img.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://cfinterface.blogspot.com/2010/03/day-1-blogging.html</feedburner:origLink></entry></feed>

