<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: How to hurt your brain with&#160;Oracle</title>
	<atom:link href="http://www.magpiebrain.com/blog/2004/01/28/how-to-hurt-your-brain-with-oracle/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.magpiebrain.com/blog/2004/01/28/how-to-hurt-your-brain-with-oracle/</link>
	<description>Sam Newman's blog</description>
	<pubDate>Sun, 12 Oct 2008 07:24:59 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Sam Newman</title>
		<link>http://www.magpiebrain.com/blog/2004/01/28/how-to-hurt-your-brain-with-oracle/#comment-164</link>
		<dc:creator>Sam Newman</dc:creator>
		<pubDate>Thu, 29 Jan 2004 10:46:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.magpiebrain.com/2004/01/28/how-to-hurt-your-brain-with-oracle/#comment-164</guid>
		<description>Yeah - I use a prefix as well having been bitten by that particular bug a couple of times in my early Java days. Checkstyle and PMD should also pick it up as a usless statement too. The annoying thing with the Oracle bug was that I completely forgot that SQL is case insensitive....
</description>
		<content:encoded><![CDATA[<p>Yeah &#8211; I use a prefix as well having been bitten by that particular bug a couple of times in my early Java days. Checkstyle and PMD should also pick it up as a usless statement too. The annoying thing with the Oracle bug was that I completely forgot that <acronym title="Structured Query Language (a database standard)">SQL</acronym> is case insensitive&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JM Ibanez</title>
		<link>http://www.magpiebrain.com/blog/2004/01/28/how-to-hurt-your-brain-with-oracle/#comment-163</link>
		<dc:creator>JM Ibanez</dc:creator>
		<pubDate>Wed, 28 Jan 2004 23:07:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.magpiebrain.com/2004/01/28/how-to-hurt-your-brain-with-oracle/#comment-163</guid>
		<description>I usually avoid such issues by prefixing parameter variables with 'p_'; that way, I know which variable I'm referring to. (And I don't have to worry about case insensitivity either)</description>
		<content:encoded><![CDATA[<p>I usually avoid such issues by prefixing parameter variables with &#8216;p_&#8217;; that way, I know which variable I&#8217;m referring to. (And I don&#8217;t have to worry about case insensitivity either)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Behrang</title>
		<link>http://www.magpiebrain.com/blog/2004/01/28/how-to-hurt-your-brain-with-oracle/#comment-162</link>
		<dc:creator>Behrang</dc:creator>
		<pubDate>Wed, 28 Jan 2004 19:41:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.magpiebrain.com/2004/01/28/how-to-hurt-your-brain-with-oracle/#comment-162</guid>
		<description>Hi

The same also happens in Java:

class X {

 int a;
 
 public void method(int a) {
   a = a;
 }
}

The above class compiles with no problems but does not do what it was meant to do. The

 a = a

has to change to

 this.a = a

to work correctly. The compiler does not give any errors but some IDEs such as Eclipse underline that statement saying it does not have any effect on the variable a...</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>The same also happens in Java:</p>
<p>class X {</p>
<p> int a;</p>
<p> public void method(int a) {<br />
   a = a;<br />
 }<br />
}</p>
<p>The above class compiles with no problems but does not do what it was meant to do. The</p>
<p> a = a</p>
<p>has to change to</p>
<p> this.a = a</p>
<p>to work correctly. The compiler does not give any errors but some IDEs such as Eclipse underline that statement saying it does not have any effect on the variable a&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
