<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2enclosuresfull.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:atom="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:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-6858783315721629218</atom:id><lastBuildDate>Tue, 07 Feb 2012 21:38:37 +0000</lastBuildDate><title>haree's blog..</title><description /><link>http://hari-gudigundla.blogspot.com/</link><managingEditor>noreply@blogger.com (Hari Gudigundla)</managingEditor><generator>Blogger</generator><openSearch:totalResults>4</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/rss+xml" href="http://feeds.feedburner.com/haree" /><feedburner:info uri="haree" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><media:copyright>haree's blog</media:copyright><media:keywords>blog</media:keywords><media:category scheme="http://www.itunes.com/dtds/podcast-1.0.dtd">Education/Educational Technology</media:category><itunes:owner><itunes:email>hari@gudigundla.com</itunes:email><itunes:name>Hari Gudigundla</itunes:name></itunes:owner><itunes:author>Hari Gudigundla</itunes:author><itunes:explicit>no</itunes:explicit><itunes:keywords>blog</itunes:keywords><itunes:subtitle>haree's blog</itunes:subtitle><itunes:summary>haree's blog</itunes:summary><itunes:category text="Education"><itunes:category text="Educational Technology" /></itunes:category><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6858783315721629218.post-8933643732341233959</guid><pubDate>Tue, 14 Oct 2008 22:13:00 +0000</pubDate><atom:updated>2008-10-15T12:57:15.189-03:00</atom:updated><title>Necessity for Object Oriented Programming Language.</title><description>What is the necessity for Object Oriented Programming Language?&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;In simple terms,  why we have moved from C(Procedural Language) to C++(Object Oriented Language)  ?&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;In C we use user defined data types like Structure, Union etc, where as in C++ we use classes, here I will try to answer the above question in terms of using these different language elements:&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;1. The variables we use in a structure or union can be accessed any where in the program, this means,  that there is no proper security for data in C i.e. Procedural Langauage. Where as in c++ we have access specifiers like public, private, protected etc, which allows us to restrict the access to a particular variable. So unlike C, C++ has some control over the access to the data.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;2. The variables/ elements of one structure are cannot be accessed in an other structure unless they are nested, so there is some access limitations for data in C. Where as in C++ the variables declared and used in one class are allowed/ restricted to get accessed by other classes throught the same access specifiers public, private, protected etc.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;3. Function concepts is not supported by structures in C i.e, we cant declare a function as a structure member, where classes can have functions as their members. &lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;These are a few reasons, where there is a necessity to move from a structure oriented language to a object oriented language.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;-Thank You,
Hari Gudigundla.&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6858783315721629218-8933643732341233959?l=hari-gudigundla.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/haree/~4/JR9ydWE5wag" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/haree/~3/JR9ydWE5wag/necessity-for-object-oriented.html</link><author>hari@gudigundla.com (Hari Gudigundla)</author><thr:total>1</thr:total><feedburner:origLink>http://hari-gudigundla.blogspot.com/2008/10/necessity-for-object-oriented.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6858783315721629218.post-327626376780170859</guid><pubDate>Sat, 20 Sep 2008 20:47:00 +0000</pubDate><atom:updated>2008-09-20T17:48:48.048-03:00</atom:updated><title>Basic Queries of SQL ...</title><description>&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold;"&gt;create a table:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;CREATE TABLE table_name (column1 coulmn_type( ),column2 coulmn_type( ),column3 coulmn_type( ));&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold;"&gt;insert values into table:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;INSERT INTO table_name (column1,column2,column3) VALUES (value1,value2,value3);&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold;"&gt;note&lt;/span&gt;: VARCHAR values must be used with single quotes, like, 'haree','apple' etc.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold;"&gt;note&lt;/span&gt;: if you are inserting values to all the columns then you can use:&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;INSERT INTO table_name (value1,value2,value3);&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold;"&gt;retreive all columns of a table:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;SELECT * FROM table_name;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold;"&gt;retreive selected columns from a table:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;SELECT column1,column2,column3 FROM table_name;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold;"&gt;to view the structure of a table:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;DESCRIBE table_name; (or) DESC table_name;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;-Thank You,
Hari Gudigundla.&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6858783315721629218-327626376780170859?l=hari-gudigundla.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/haree/~4/YvHqpb83Tsw" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/haree/~3/YvHqpb83Tsw/basic-queries-of-sql.html</link><author>hari@gudigundla.com (Hari Gudigundla)</author><thr:total>0</thr:total><feedburner:origLink>http://hari-gudigundla.blogspot.com/2008/09/basic-queries-of-sql.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6858783315721629218.post-2716055488174100759</guid><pubDate>Sat, 20 Sep 2008 20:45:00 +0000</pubDate><atom:updated>2008-09-23T04:04:27.939-03:00</atom:updated><title>Oracle 10g, Html, Xml, Javascript, .Net</title><description>&lt;span class="Apple-tab-span" style="white-space:pre"&gt; &lt;/span&gt;Recently I have started learning &lt;span class="Apple-style-span" style=""&gt;Oracle 10g&lt;/span&gt;, html, xml, javascript and also interested in learning .net technology so regularly from now I keep posting different concepts of what I learn, also I want to post about how to improve our blog and if there are any corrrections or suggestions or misconcepts please bring it to my notice at &lt;span class="Apple-style-span" style="font-weight: bold; "&gt;hari@gudigundla.com&lt;/span&gt; ...&lt;div class="blogger-post-footer"&gt;-Thank You,
Hari Gudigundla.&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6858783315721629218-2716055488174100759?l=hari-gudigundla.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/haree/~4/lTNxmNCDmg0" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/haree/~3/lTNxmNCDmg0/oracle-10g_20.html</link><author>hari@gudigundla.com (Hari Gudigundla)</author><thr:total>0</thr:total><feedburner:origLink>http://hari-gudigundla.blogspot.com/2008/09/oracle-10g_20.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6858783315721629218.post-5288253347664257820</guid><pubDate>Sat, 13 Sep 2008 22:14:00 +0000</pubDate><atom:updated>2008-09-20T18:43:49.713-03:00</atom:updated><title>my experience...</title><description>&lt;span class="Apple-tab-span" style="white-space:pre"&gt; &lt;/span&gt;Hello, my name is Hari Gudigundla, I completed my engineering in computer science and interested in blogging and now I have decided to blog what all I learn and experience in all aspects of computers I am interested in like learning new technologies, programming, web development etc. I will try to list out all interesting and important aspects which I consider may be useful for others. Hope I will continue this discussion...&lt;div class="blogger-post-footer"&gt;-Thank You,
Hari Gudigundla.&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6858783315721629218-5288253347664257820?l=hari-gudigundla.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/haree/~4/xqbL3NX5OgU" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/haree/~3/xqbL3NX5OgU/my-experience.html</link><author>hari@gudigundla.com (Hari Gudigundla)</author><thr:total>0</thr:total><feedburner:origLink>http://hari-gudigundla.blogspot.com/2008/09/my-experience.html</feedburner:origLink></item><language>en-us</language><copyright>haree's blog</copyright><media:credit role="author">Hari Gudigundla</media:credit><media:rating>nonadult</media:rating><media:description type="plain">haree's blog</media:description></channel></rss>

