<?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>5th Cross</title>
	<atom:link href="http://5thcross.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://5thcross.wordpress.com</link>
	<description>my writings about java, eclipse and musings about technology</description>
	<lastBuildDate>Fri, 14 Oct 2011 05:55:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='5thcross.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>5th Cross</title>
		<link>http://5thcross.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://5thcross.wordpress.com/osd.xml" title="5th Cross" />
	<atom:link rel='hub' href='http://5thcross.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Finding bugs in your code using FindBugs</title>
		<link>http://5thcross.wordpress.com/2010/07/22/finding-bugs-in-your-code-using-findbugs/</link>
		<comments>http://5thcross.wordpress.com/2010/07/22/finding-bugs-in-your-code-using-findbugs/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 17:37:14 +0000</pubDate>
		<dc:creator>Phani Kumar</dc:creator>
				<category><![CDATA[eclipse]]></category>
		<category><![CDATA[plug-in]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">https://5thcross.wordpress.com/2010/07/22/finding-bugs-in-your-code-using-findbugs/</guid>
		<description><![CDATA[Static code analysis is the analysis of the software that is performed without actually executing the program. The process provides an understanding of the code structure and can help to ensure that the code adheres to industry standards. Static analysis code reviews compare the source code of an application with a set of standards to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=5thcross.wordpress.com&amp;blog=849521&amp;post=157&amp;subd=5thcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a class="zem_slink" title="Static code analysis" rel="wikipedia" href="http://en.wikipedia.org/wiki/Static_code_analysis">Static code analysis</a> is the analysis of the software that is performed without actually executing the program. The process provides an understanding of the code structure and can help to ensure that the code adheres to industry standards. Static analysis code reviews compare the source code of an application with a set of standards to ensure the source code compiles with those standards, to find unwanted dependencies, and to ensure that the intended structural design of the code is maintained. The main advantage of static analysis is the fact that it can reveal errors that do not manifest themselves until a disaster occurs. Static analysis is only a first step in a comprehensive software quality regime.</p>
<p><span id="more-157"></span>Using static analysis tools you can analyze the software without having to run the application. These tools come in the aid of the developer to find existing bugs in the code without requiring to put much effort. Good tools are a valuable addition to your toolbox. There are lot of <a title="List of static analysis tools" href="http://en.wikipedia.org/wiki/List_of_tools_for_static_code_analysis" target="_blank">tools</a> available, but I am going to discuss about the <a class="zem_slink" title="FindBugs" rel="homepage" href="http://findbugs.sourceforge.net/">FindBugs</a> plug-in for the eclipse and its usage.</p>
<p><!-- more --></p>
<h4>FindBugs, what is it?</h4>
<p>FindBugs is a static analysis tool that finds coding mistakes by examining java class files looking for potential problems by matching your bytecode against a list of bug patterns.</p>
<h4>Installing FindBugs</h4>
<p>FindBugs is a tool that is both a stand-alone Java application and an <a class="zem_slink" title="Eclipse (software)" rel="homepage" href="http://www.eclipse.org/">Eclipse</a> plug-in. The stand-alone tool is a command line, ant and a Swing interface. Check the <a title="download page for FindBugs" href="http://findbugs.sourceforge.net/downloads.html" target="_blank">download</a> page for all the download links for all FindBugs versions. Eclipse plug-in for FindBugs require Eclipse 3.3 or later. Use the Eclipse update manager/Install New Software feature to install FindBugs from the FindBugs update site <a href="http://findbugs.cs.umd.edu/eclipse">http://findbugs.cs.umd.edu/eclipse</a></p>
<h4>Installing FindBugs plug-in</h4>
<p>Start Eclipse. From the Eclipse menu select Help –&gt; Install New Software (My Eclipse version is 3.5 – Eclipse Galileo). If you’re using an older version you might see Software Updates instead of Install New Software.</p>
<p><a href="http://5thcross.files.wordpress.com/2010/07/20100722_0118.png"><img style="display:inline;border-width:0;" src="http://5thcross.files.wordpress.com/2010/07/20100722_0118_thumb.png?w=354&#038;h=379" border="0" alt="" width="354" height="379" /></a></p>
<p>In the Install window click on the Add button to add a new update site, see the figure below. In the Add Site window enter the FindBugs update site <a title="http://findbugs.cs.umd.edu/eclipse" href="http://findbugs.cs.umd.edu/eclipse">http://findbugs.cs.umd.edu/eclipse</a> in the location text box and click ok.</p>
<p><a href="http://5thcross.files.wordpress.com/2010/07/20100722_0130.png"><img style="display:inline;border-width:0;" src="http://5thcross.files.wordpress.com/2010/07/20100722_0130_thumb.png?w=404&#038;h=324" border="0" alt="" width="404" height="324" /></a></p>
<p>Simply follow the on screen instructions to install the plug-in. After the plug-in is installed restart the workbench for the changes to take effect.</p>
<h4>Configuration</h4>
<p>After the installation is finished configure the FindBugs plug-in for your project requirements, priorities, and reporter configurations. From the Window menu select Window –&gt; Preferences. Select FindBugs under Java in the left hand pane.</p>
<p><a href="http://5thcross.files.wordpress.com/2010/07/20100722_0141.png"><img style="display:inline;border-width:0;" src="http://5thcross.files.wordpress.com/2010/07/20100722_0141_thumb.png?w=404&#038;h=342" border="0" alt="" width="404" height="342" /></a></p>
<h4>Running FindBugs</h4>
<p>You can run FindBugs against a file, package or entire project. Select the file or package or project in which you want to find bugs, from the right click context menu select Find Bugs –&gt; Find Bugs. Once FindBugs finishes the analysis it will prompt you to switch to the FindBugs perspective.</p>
<p><a href="http://5thcross.files.wordpress.com/2010/07/20100722_2046.png"><img style="display:inline;border-width:0;" src="http://5thcross.files.wordpress.com/2010/07/20100722_2046_thumb.png?w=404&#038;h=304" border="0" alt="" width="404" height="304" /></a></p>
<p>If it doesn’t switch then from the main menu select Window –&gt; Open Perspective –&gt; Other. From the Open Perspective window select FindBugs and click on ok.</p>
<p><a href="http://5thcross.files.wordpress.com/2010/07/20100722_2051.png"><img style="display:inline;border-width:0;" src="http://5thcross.files.wordpress.com/2010/07/20100722_2051_thumb.png?w=404&#038;h=486" border="0" alt="" width="404" height="486" /></a></p>
<p>In the Bug Explorer view you can see all the bugs it found (depending on your configurations and reporter priorities). Double click on the bug entry in the bug explorer to open it.</p>
<p><a href="http://5thcross.files.wordpress.com/2010/07/20100722_2153.png"><img style="display:inline;border-width:0;" src="http://5thcross.files.wordpress.com/2010/07/20100722_2153_thumb.png?w=404&#038;h=553" border="0" alt="" width="404" height="553" /></a> .</p>
<p>See in the properties view why it thinks its a bug and see the explanation on how to make it better. Make better software by finding the bugs early.</p>
<p>Happy Coding.</p>
<div class="zemanta-pixie" style="margin-top:10px;height:15px;"><img class="zemanta-pixie-img" style="border:medium none;float:right;" src="http://img.zemanta.com/pixy.gif?x-id=59a35bbc-f300-445a-b44e-17f6f7601848" alt="" /></div>
<br />Filed under: <a href='http://5thcross.wordpress.com/category/eclipse/'>eclipse</a>, <a href='http://5thcross.wordpress.com/category/plug-in/'>plug-in</a>, <a href='http://5thcross.wordpress.com/category/software/'>software</a> Tagged: <a href='http://5thcross.wordpress.com/tag/eclipse/'>eclipse</a>, <a href='http://5thcross.wordpress.com/tag/plug-in/'>plug-in</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/5thcross.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/5thcross.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/5thcross.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/5thcross.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/5thcross.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/5thcross.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/5thcross.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/5thcross.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/5thcross.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/5thcross.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/5thcross.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/5thcross.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/5thcross.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/5thcross.wordpress.com/157/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=5thcross.wordpress.com&amp;blog=849521&amp;post=157&amp;subd=5thcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://5thcross.wordpress.com/2010/07/22/finding-bugs-in-your-code-using-findbugs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c99f99ad622f0e4c602b831680dba75e?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">phani</media:title>
		</media:content>

		<media:content url="http://5thcross.files.wordpress.com/2010/07/20100722_0118_thumb.png" medium="image" />

		<media:content url="http://5thcross.files.wordpress.com/2010/07/20100722_0130_thumb.png" medium="image" />

		<media:content url="http://5thcross.files.wordpress.com/2010/07/20100722_0141_thumb.png" medium="image" />

		<media:content url="http://5thcross.files.wordpress.com/2010/07/20100722_2046_thumb.png" medium="image" />

		<media:content url="http://5thcross.files.wordpress.com/2010/07/20100722_2051_thumb.png" medium="image" />

		<media:content url="http://5thcross.files.wordpress.com/2010/07/20100722_2153_thumb.png" medium="image" />

		<media:content url="http://img.zemanta.com/pixy.gif?x-id=59a35bbc-f300-445a-b44e-17f6f7601848" medium="image" />
	</item>
		<item>
		<title>Test Post: posting source code</title>
		<link>http://5thcross.wordpress.com/2010/05/29/test-post-posting-source-code/</link>
		<comments>http://5thcross.wordpress.com/2010/05/29/test-post-posting-source-code/#comments</comments>
		<pubDate>Sat, 29 May 2010 17:29:29 +0000</pubDate>
		<dc:creator>Phani Kumar</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[syntax]]></category>

		<guid isPermaLink="false">https://5thcross.wordpress.com/2010/05/29/test-post-posting-source-code/</guid>
		<description><![CDATA[Sample source code Sample source code initially collapsed Sample source code with line highlighting Link to my article on how to do this. Filed under: code, syntax<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=5thcross.wordpress.com&amp;blog=849521&amp;post=77&amp;subd=5thcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sample source code<br />
<pre class="brush: java;">
public class MyClass
{
   public static void main(String args[])
   {
      System.out.println(&quot;Hello World...!&quot;);
    }

}
</pre></p>
<p>Sample source code initially collapsed<br />
<pre class="brush: java; collapse: true; light: false; toolbar: true;">
public class MyClass
{
   public static void main(String args[])
   {
      System.out.println(&quot;Hello World...!&quot;);
    }

}
</pre></p>
<p>Sample source code with line highlighting<br />
<pre class="brush: java; highlight: [5];">
public class MyClass
{
   public static void main(String args[])
   {
      System.out.println(&quot;Hello World...!&quot;);
    }

}
</pre></p>
<p>Link to my <a href="http://sixth-avenue.blogspot.com/2010/05/posting-source-code-in-wordpresscom.html">article</a> on how to do this.</p>
<br />Filed under: <a href='http://5thcross.wordpress.com/category/code/'>code</a>, <a href='http://5thcross.wordpress.com/category/syntax/'>syntax</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/5thcross.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/5thcross.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/5thcross.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/5thcross.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/5thcross.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/5thcross.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/5thcross.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/5thcross.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/5thcross.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/5thcross.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/5thcross.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/5thcross.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/5thcross.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/5thcross.wordpress.com/77/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=5thcross.wordpress.com&amp;blog=849521&amp;post=77&amp;subd=5thcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://5thcross.wordpress.com/2010/05/29/test-post-posting-source-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c99f99ad622f0e4c602b831680dba75e?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">phani</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing Jadclipse in Eclipse</title>
		<link>http://5thcross.wordpress.com/2009/05/20/installing-jadclipse-in-eclipse/</link>
		<comments>http://5thcross.wordpress.com/2009/05/20/installing-jadclipse-in-eclipse/#comments</comments>
		<pubDate>Wed, 20 May 2009 11:58:37 +0000</pubDate>
		<dc:creator>Phani Kumar</dc:creator>
				<category><![CDATA[eclipse]]></category>
		<category><![CDATA[ide]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[plug-in]]></category>
		<category><![CDATA[jad]]></category>

		<guid isPermaLink="false">http://5thcross.wordpress.com/?p=57</guid>
		<description><![CDATA[Today I am going to show you how to install and use Jadclipse. Jadclipse is eclipse plug-in that integrates Jad (Java decompiler) with Eclipse. First you require Jad for decompiling java files. You can find a list of mirrors on this site where you can get JAD for various platforms. Download it and unzip into [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=5thcross.wordpress.com&amp;blog=849521&amp;post=57&amp;subd=5thcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today I am going to show you how to install and use Jadclipse. <a href="http://jadclipse.sourceforge.net/wiki/index.php/Main_Page">Jadclipse</a> is eclipse plug-in that integrates Jad (Java decompiler) with Eclipse.</p>
<ul>
<li>First you require Jad for decompiling java files. You can find a list of mirrors on this <a href="http://www.varaneckas.com/jad" target="_blank">site</a> where you can get <a href="http://www.varaneckas.com/jad" target="_blank">JAD </a>for various platforms. Download it and unzip into any folder on your hard drive.</li>
<li>Next download the Jadclipse plug-in jar file from <a href="http://prdownloads.sourceforge.net/jadclipse/net.sf.jadclipse_3.3.0.jar?download">here</a> and place the jar file in your eclipse plugins folder</li>
<li>Restart your eclipse. If eclipse didn&#8217;t recognize the plug-in then launch eclipse with -clean flag.</li>
</ul>
<p style="padding-left:60px;">eclipse -clean</p>
<ul>
<li>Configure the path to the Jad executable in eclipse under Window &gt; Preferences&#8230; &gt; Java &gt; JadClipse &gt; Path to Decompiler.</li>
<li>Set the full path of the jad executable, e.g. C:\Program Files\Jad\jad.exe</li>
<li>Go to Window &gt; Preferences&#8230; &gt; General &gt; Editors &gt; File Associations and make sure that the JadClipse Class File Viewer has the default file association for *.class  files.</li>
</ul>
<div class="wp-caption aligncenter" style="width: 430px"><img title="file association for .class files" src="http://i201.photobucket.com/albums/aa311/bvsj_phanikumar/fileassociationforjad.jpg" alt="file association" width="420" height="509" /><p class="wp-caption-text">file association</p></div>
<p>Now everything is done. If you want to view the source for any class then simply ctrl+click on that class then the source for that class will be showed in your eclipse editor.</p>
<p style="text-align:center;"><img class="aligncenter" title="decompiled class" src="http://i201.photobucket.com/albums/aa311/bvsj_phanikumar/decompiledclass.jpg" alt="" width="420" height="743" /></p>
<br />Posted in eclipse, ide, java, plug-in Tagged: eclipse, jad, java, plug-in <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/5thcross.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/5thcross.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/5thcross.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/5thcross.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/5thcross.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/5thcross.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/5thcross.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/5thcross.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/5thcross.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/5thcross.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/5thcross.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/5thcross.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/5thcross.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/5thcross.wordpress.com/57/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=5thcross.wordpress.com&amp;blog=849521&amp;post=57&amp;subd=5thcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://5thcross.wordpress.com/2009/05/20/installing-jadclipse-in-eclipse/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c99f99ad622f0e4c602b831680dba75e?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">phani</media:title>
		</media:content>

		<media:content url="http://i201.photobucket.com/albums/aa311/bvsj_phanikumar/fileassociationforjad.jpg" medium="image">
			<media:title type="html">file association for .class files</media:title>
		</media:content>

		<media:content url="http://i201.photobucket.com/albums/aa311/bvsj_phanikumar/decompiledclass.jpg" medium="image">
			<media:title type="html">decompiled class</media:title>
		</media:content>
	</item>
		<item>
		<title>Reading from CLOB in java through JDBC</title>
		<link>http://5thcross.wordpress.com/2009/02/21/reading-from-clob-in-java-through-jdbc/</link>
		<comments>http://5thcross.wordpress.com/2009/02/21/reading-from-clob-in-java-through-jdbc/#comments</comments>
		<pubDate>Sat, 21 Feb 2009 10:30:40 +0000</pubDate>
		<dc:creator>Phani Kumar</dc:creator>
				<category><![CDATA[CLOB]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[Code Snippet]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[JDBC]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://5thcross.wordpress.com/2009/02/21/reading-from-clob-in-java-through-jdbc/</guid>
		<description><![CDATA[Here is a code snippet that I have used to read from a CLOB, Oracle 10g instance. Posted in CLOB, code, Code Snippet, database, java, JDBC, sql Tagged: CLOB, java, JDBC<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=5thcross.wordpress.com&amp;blog=849521&amp;post=51&amp;subd=5thcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here is a code snippet that I have used to read from a CLOB, Oracle 10g instance.<br />
<pre class="brush: java;">
PreparedStatment ps = connection.prepareStatement
(&quot;SELECT clobcolumn from clobtable&quot;);
ResultSet rs = ps.executeQuery();
while(rs.next())
{
oracle.sql.CLOB clobValue = (oracle.sql.CLOB)rs.getCLOB(1);
BufferedReader reader = new BufferedReader(new
InputStreamReader(clobValue.getAsciiStream()));
String read = null;
StringBuffer buffer = new StringBuffer();
while((read = reader.readLine()) != null )
{
buffer.append(read);
}
}
</pre></p>
<div class="wlWriterHeaderFooter" style="text-align:right;margin:0;padding:4px 0;"><a href="http://digg.com/submit?url=http%3a%2f%2f5thcross.wordpress.com%2f2009%2f02%2f21%2freading-from-clob-in-java-through-jdbc%2f&amp;title=Reading+from+CLOB+in+java+through+JDBC"><img style="border:0;" title="Digg This" src="http://digg.com/img/badges/100x20-digg-button.png" border="0" alt="Digg This" width="100" height="20" /></a></div>
<br />Posted in CLOB, code, Code Snippet, database, java, JDBC, sql Tagged: CLOB, java, JDBC <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/5thcross.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/5thcross.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/5thcross.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/5thcross.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/5thcross.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/5thcross.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/5thcross.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/5thcross.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/5thcross.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/5thcross.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/5thcross.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/5thcross.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/5thcross.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/5thcross.wordpress.com/51/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=5thcross.wordpress.com&amp;blog=849521&amp;post=51&amp;subd=5thcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://5thcross.wordpress.com/2009/02/21/reading-from-clob-in-java-through-jdbc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c99f99ad622f0e4c602b831680dba75e?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">phani</media:title>
		</media:content>

		<media:content url="http://digg.com/img/badges/100x20-digg-button.png" medium="image">
			<media:title type="html">Digg This</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing Eclipse SQL Explorer Plug-in in Eclipse Ganymede (Eclipse 3.4)</title>
		<link>http://5thcross.wordpress.com/2008/12/02/installing-eclipse-sql-explorer-plug-in-in-eclipse-ganymede-eclipse-34/</link>
		<comments>http://5thcross.wordpress.com/2008/12/02/installing-eclipse-sql-explorer-plug-in-in-eclipse-ganymede-eclipse-34/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 10:37:07 +0000</pubDate>
		<dc:creator>Phani Kumar</dc:creator>
				<category><![CDATA[database]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[ide]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[plug-in]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://5thcross.wordpress.com/2008/12/02/installing-eclipse-sql-explorer-plug-in-in-eclipse-ganymede-eclipse-34/</guid>
		<description><![CDATA[This is an updated post for my earlier post Installing Eclipse SQL Explorer Plug-in for installing Eclipse SQL Explorer plug-in in Eclipse 3.4 Eclipse version 3.4 Eclipse SQL Explorer version 3.5.0 Installing using the Eclipse update manager. From the Eclipse menu select Help-&#62;Software Updates&#8230; Software Updates and Add-ons dialogue box will be displayed. Select the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=5thcross.wordpress.com&amp;blog=849521&amp;post=44&amp;subd=5thcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is an updated post for my earlier post <a href="http://5thcross.wordpress.com/2007/05/08/installing-eclipse-sql-explorer-plug-in/">Installing Eclipse SQL Explorer Plug-in</a> for installing Eclipse SQL Explorer plug-in in Eclipse 3.4</p>
<p>Eclipse version 3.4<br />
Eclipse SQL Explorer version 3.5.0</p>
<p>Installing using the Eclipse update manager.</p>
<ul>
<li>From the Eclipse menu select Help-&gt;Software Updates&#8230;</li>
</ul>
<div><a href="http://s201.photobucket.com/albums/aa311/bvsj_phanikumar/images/?action=view&amp;current=Clipboard12.jpg" target="_blank"><img style="float:none;" src="http://i201.photobucket.com/albums/aa311/bvsj_phanikumar/images/Clipboard12.jpg" border="0" alt="Photobucket" /></a></p>
<div>
<ul>
<li><strong></strong><em></em>Software Updates and Add-ons dialogue box will be displayed. Select the Available Software tab on the top of the dialogue box. Now Click on the Add Site button on the right hand side of the dialogue box.</li>
</ul>
</div>
</div>
<div><a href="http://s201.photobucket.com/albums/aa311/bvsj_phanikumar/images/?action=view&amp;current=Clipboard01.jpg" target="_blank"><img src="http://i201.photobucket.com/albums/aa311/bvsj_phanikumar/images/Clipboard01.jpg" border="0" alt="Photobucket" width="420" height="350" /></a></p>
<div>
<ul>
<li>You will be presented with the Add Site dialogue box. Now in the location add &#8220;http://eclipsesql.sourceforge.net/&#8221; (without quotes) and click ok to close the dialogue box.</li>
</ul>
</div>
</div>
<div><a href="http://s201.photobucket.com/albums/aa311/bvsj_phanikumar/images/?action=view&amp;current=Clipboard03.jpg" target="_blank"><img src="http://i201.photobucket.com/albums/aa311/bvsj_phanikumar/images/Clipboard03.jpg" border="0" alt="Photobucket" /></a></p>
<div>
<ul>
<li>It will search and present you with available software</li>
</ul>
</div>
</div>
<div><a href="http://s201.photobucket.com/albums/aa311/bvsj_phanikumar/images/?action=view&amp;current=Clipboard04.jpg" target="_blank"><img src="http://i201.photobucket.com/albums/aa311/bvsj_phanikumar/images/Clipboard04.jpg" border="0" alt="Photobucket" width="420" height="350" /></a></p>
<div>
<ul>
<li>Select the features you want to install . In this case select the branch, it will also install the patch and click on the Install button on the top right hand side.</li>
<li>It will check for dependencies if any and will present to you what all you need to install.</li>
</ul>
</div>
</div>
<div><a href="http://s201.photobucket.com/albums/aa311/bvsj_phanikumar/images/?action=view&amp;current=Clipboard05.jpg" target="_blank"><img src="http://i201.photobucket.com/albums/aa311/bvsj_phanikumar/images/Clipboard05.jpg" border="0" alt="Photobucket" /></a></p>
<div>
<ul>
<li>Confirm the plug-ins you want to install and click next</li>
</ul>
</div>
</div>
<div><a href="http://s201.photobucket.com/albums/aa311/bvsj_phanikumar/images/?action=view&amp;current=Clipboard07.jpg" target="_blank"><img src="http://i201.photobucket.com/albums/aa311/bvsj_phanikumar/images/Clipboard07.jpg" border="0" alt="Photobucket" width="420" height="350" /></a></p>
<div>
<ul>
<li>Accept the license agreement and click on Finish.</li>
</ul>
</div>
</div>
<div><a href="http://s201.photobucket.com/albums/aa311/bvsj_phanikumar/images/?action=view&amp;current=Clipboard08.jpg" target="_blank"><img src="http://i201.photobucket.com/albums/aa311/bvsj_phanikumar/images/Clipboard08.jpg" border="0" alt="Photobucket" width="420" height="350" /></a></p>
<div>After the installation is done it will ask to restart the workbench, restart the workbench. To open the Eclipse SQL Explorer perspective from the menu select Window-&gt;Open Perspective-&gt;Other. From the list of perspectives select Sql Explorer and click on ok, you will be switched to SQl Explorer Perspective.</div>
</div>
<div><a href="http://s201.photobucket.com/albums/aa311/bvsj_phanikumar/images/?action=view&amp;current=Clipboard13.jpg" target="_blank"><img src="http://i201.photobucket.com/albums/aa311/bvsj_phanikumar/images/Clipboard13.jpg" border="0" alt="Photobucket" /></a></div>
<p>Technorati Tags: <a class="performancingtags" rel="tag" href="http://technorati.com/tag/eclipse">eclipse</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/plug-in">plug-in</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/sql%20explorer%20plug-in">sql explorer plug-in</a></p>
<br />Posted in database, eclipse, ide, java, plug-in, sql  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/5thcross.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/5thcross.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/5thcross.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/5thcross.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/5thcross.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/5thcross.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/5thcross.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/5thcross.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/5thcross.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/5thcross.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/5thcross.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/5thcross.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/5thcross.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/5thcross.wordpress.com/44/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=5thcross.wordpress.com&amp;blog=849521&amp;post=44&amp;subd=5thcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://5thcross.wordpress.com/2008/12/02/installing-eclipse-sql-explorer-plug-in-in-eclipse-ganymede-eclipse-34/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c99f99ad622f0e4c602b831680dba75e?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">phani</media:title>
		</media:content>

		<media:content url="http://i201.photobucket.com/albums/aa311/bvsj_phanikumar/images/Clipboard12.jpg" medium="image">
			<media:title type="html">Photobucket</media:title>
		</media:content>

		<media:content url="http://i201.photobucket.com/albums/aa311/bvsj_phanikumar/images/Clipboard01.jpg" medium="image">
			<media:title type="html">Photobucket</media:title>
		</media:content>

		<media:content url="http://i201.photobucket.com/albums/aa311/bvsj_phanikumar/images/Clipboard03.jpg" medium="image">
			<media:title type="html">Photobucket</media:title>
		</media:content>

		<media:content url="http://i201.photobucket.com/albums/aa311/bvsj_phanikumar/images/Clipboard04.jpg" medium="image">
			<media:title type="html">Photobucket</media:title>
		</media:content>

		<media:content url="http://i201.photobucket.com/albums/aa311/bvsj_phanikumar/images/Clipboard05.jpg" medium="image">
			<media:title type="html">Photobucket</media:title>
		</media:content>

		<media:content url="http://i201.photobucket.com/albums/aa311/bvsj_phanikumar/images/Clipboard07.jpg" medium="image">
			<media:title type="html">Photobucket</media:title>
		</media:content>

		<media:content url="http://i201.photobucket.com/albums/aa311/bvsj_phanikumar/images/Clipboard08.jpg" medium="image">
			<media:title type="html">Photobucket</media:title>
		</media:content>

		<media:content url="http://i201.photobucket.com/albums/aa311/bvsj_phanikumar/images/Clipboard13.jpg" medium="image">
			<media:title type="html">Photobucket</media:title>
		</media:content>
	</item>
		<item>
		<title>XBMC Media Center on Ubuntu Hardy</title>
		<link>http://5thcross.wordpress.com/2008/10/10/xbmc-media-center-on-ubuntu-hardy/</link>
		<comments>http://5thcross.wordpress.com/2008/10/10/xbmc-media-center-on-ubuntu-hardy/#comments</comments>
		<pubDate>Fri, 10 Oct 2008 17:35:09 +0000</pubDate>
		<dc:creator>Phani Kumar</dc:creator>
				<category><![CDATA[media center]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://5thcross.wordpress.com/2008/10/10/xbmc-media-center-on-ubuntu-hardy-2/</guid>
		<description><![CDATA[XBMC is an award winning media center for Linux, Mac, Windows and XBox. First thanks to this post which I stumbled and discovered about XBMC. Now I am going to tell you about my experience about XBMC. First add these lines to your third party software sources list: deb http://ppa.launchpad.net/team-xbmc-hardy/ubuntu hardy main deb-src http://ppa.launchpad.net/team-xbmc-hardy/ubuntu hardy [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=5thcross.wordpress.com&amp;blog=849521&amp;post=41&amp;subd=5thcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><font face="tahoma"><a href="http://xbmc.org/" target="_blank">XBMC</a> </font>is an award winning media center for Linux, Mac, Windows and XBox. First thanks to this <a href="http://andrewalliance.wordpress.com/2008/10/08/how-to-xbmc-on-ubuntu-804/" target="_blank">post</a> which I stumbled and discovered about XBMC. Now I am going to tell you about my experience about <a href="http://xbmc.org/" target="_blank">XBMC</a>.</p>
<p>First add these lines to your third party software sources list:
<ul>
<li>deb http://ppa.launchpad.net/team-xbmc-hardy/ubuntu hardy main</li>
<li>deb-src http://ppa.launchpad.net/team-xbmc-hardy/ubuntu hardy main</li>
</ul>
<p>Then save and reload your repositories, you can also do this from terminal by typing
<ul>
<li>sudo apt-get update</li>
</ul>
<p>Now after the update is finished, you can install xbmc by typing this line in the terminal
<ul>
<li>sudo apt-get install xbmc</li>
</ul>
<p>You can start XBMC by navigating to Applications -&gt; Sound &amp; Video -&gt;XBMC Media Center</p>
<p>I instantly liked this application, the screens, the navigation and everything is good looking. I used another media center application by name <a href="http://www.entertainer-project.com/" target="_blank">Entertainer</a> but I liked XBMC more. Entertainer didn&#8217;t work well while compiz is running you need to use matacity for it to display properly. It also created tiny image thumbnails of the contents of the pictures folder in each folder. On the other hand XBMC has no problem loading while compiz is running and views are really good. Though I find one proble with XBMC is playing DVD&#8217;s. It loaded the DVD properly but started playing it very fastly as if you press fast forward. It even loaded iso file but same problem with it, it&#8217;s playing the movie as if your&#8217;re fast forwarding it might be that it is a beta version. It had no problems playing avi files, flv or any other video files it played perfectly well.</p>
<p>Check out some of my screen shots of XBMC.</p>
<p><img alt="" title="" src="http://5thcross.files.wordpress.com/2008/10/screenshot001.jpg?w=320&#038;h=200" width="320" height="200" /></p>
<p><img alt="" title="" src="http://5thcross.files.wordpress.com/2008/10/screenshot002.jpeg?w=320&#038;h=200" width="320" height="200" /></p>
<p><img alt="" title="" src="http://5thcross.files.wordpress.com/2008/10/screenshot003.jpg?w=320&#038;h=200" width="320" height="200" /></p>
<p><img alt="" title="" src="http://5thcross.files.wordpress.com/2008/10/screenshot006.jpg?w=320&#038;h=200" width="320" height="200" /></p>
<p><img alt="" title="" src="http://5thcross.files.wordpress.com/2008/10/screenshot007.jpg?w=320&#038;h=200" width="320" height="200" /></p>
<p><img alt="" title="" src="http://5thcross.files.wordpress.com/2008/10/screenshot008.jpg?w=320&#038;h=200" width="320" height="200" /></p>
<p><img alt="" title="" src="http://5thcross.files.wordpress.com/2008/10/screenshot009.jpg?w=320&#038;h=200" width="320" height="200" /></p>
<p><img alt="" title="" src="http://5thcross.files.wordpress.com/2008/10/screenshot010.jpg?w=320&#038;h=200" width="320" height="200" /></p>
<p><img alt="" title="" src="http://5thcross.files.wordpress.com/2008/10/screenshot011.jpg?w=320&#038;h=200" width="320" height="200" /></p>
<p><img alt="" title="" src="http://5thcross.files.wordpress.com/2008/10/screenshot012.jpg?w=320&#038;h=200" width="320" height="200" /></p>
<p>
<p class="scribefire-powered">Powered by <a href="http://www.scribefire.com/">ScribeFire</a>.</p>
<br />Posted in media center, ubuntu Tagged: ubuntu <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/5thcross.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/5thcross.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/5thcross.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/5thcross.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/5thcross.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/5thcross.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/5thcross.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/5thcross.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/5thcross.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/5thcross.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/5thcross.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/5thcross.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/5thcross.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/5thcross.wordpress.com/41/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=5thcross.wordpress.com&amp;blog=849521&amp;post=41&amp;subd=5thcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://5thcross.wordpress.com/2008/10/10/xbmc-media-center-on-ubuntu-hardy/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c99f99ad622f0e4c602b831680dba75e?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">phani</media:title>
		</media:content>

		<media:content url="http://5thcross.files.wordpress.com/2008/10/screenshot001.jpg" medium="image" />

		<media:content url="http://5thcross.files.wordpress.com/2008/10/screenshot002.jpeg" medium="image" />

		<media:content url="http://5thcross.files.wordpress.com/2008/10/screenshot003.jpg" medium="image" />

		<media:content url="http://5thcross.files.wordpress.com/2008/10/screenshot006.jpg" medium="image" />

		<media:content url="http://5thcross.files.wordpress.com/2008/10/screenshot007.jpg" medium="image" />

		<media:content url="http://5thcross.files.wordpress.com/2008/10/screenshot008.jpg" medium="image" />

		<media:content url="http://5thcross.files.wordpress.com/2008/10/screenshot009.jpg" medium="image" />

		<media:content url="http://5thcross.files.wordpress.com/2008/10/screenshot010.jpg" medium="image" />

		<media:content url="http://5thcross.files.wordpress.com/2008/10/screenshot011.jpg" medium="image" />

		<media:content url="http://5thcross.files.wordpress.com/2008/10/screenshot012.jpg" medium="image" />
	</item>
		<item>
		<title>Ubuntu 6.10 with XGL &amp; Kiba-Dock</title>
		<link>http://5thcross.wordpress.com/2007/06/05/ubuntu-610-with-xgl-kiba-dock/</link>
		<comments>http://5thcross.wordpress.com/2007/06/05/ubuntu-610-with-xgl-kiba-dock/#comments</comments>
		<pubDate>Tue, 05 Jun 2007 13:50:08 +0000</pubDate>
		<dc:creator>Phani Kumar</dc:creator>
				<category><![CDATA[kiba-dock]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[videos]]></category>
		<category><![CDATA[xgl]]></category>

		<guid isPermaLink="false">http://5thcross.wordpress.com/2007/06/05/ubuntu-610-with-xgl-kiba-dock/</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=5thcross.wordpress.com&amp;blog=849521&amp;post=24&amp;subd=5thcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<span style="text-align:center; display: block;"><a href="http://5thcross.wordpress.com/2007/06/05/ubuntu-610-with-xgl-kiba-dock/"><img src="http://img.youtube.com/vi/bYsxaMyFV2Y/2.jpg" alt="" /></a></span>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/5thcross.wordpress.com/24/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/5thcross.wordpress.com/24/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/5thcross.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/5thcross.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/5thcross.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/5thcross.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/5thcross.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/5thcross.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/5thcross.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/5thcross.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/5thcross.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/5thcross.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/5thcross.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/5thcross.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/5thcross.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/5thcross.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=5thcross.wordpress.com&amp;blog=849521&amp;post=24&amp;subd=5thcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://5thcross.wordpress.com/2007/06/05/ubuntu-610-with-xgl-kiba-dock/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c99f99ad622f0e4c602b831680dba75e?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">phani</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows Vista Aero Vs Linux Ubuntu Beryl</title>
		<link>http://5thcross.wordpress.com/2007/06/05/windows-vista-aero-vs-linux-ubuntu-beryl/</link>
		<comments>http://5thcross.wordpress.com/2007/06/05/windows-vista-aero-vs-linux-ubuntu-beryl/#comments</comments>
		<pubDate>Tue, 05 Jun 2007 13:02:37 +0000</pubDate>
		<dc:creator>Phani Kumar</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://5thcross.wordpress.com/2007/06/05/windows-vista-aero-vs-linux-ubuntu-beryl/</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=5thcross.wordpress.com&amp;blog=849521&amp;post=23&amp;subd=5thcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<span style="text-align:center; display: block;"><a href="http://5thcross.wordpress.com/2007/06/05/windows-vista-aero-vs-linux-ubuntu-beryl/"><img src="http://img.youtube.com/vi/xC5uEe5OzNQ/2.jpg" alt="" /></a></span>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/5thcross.wordpress.com/23/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/5thcross.wordpress.com/23/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/5thcross.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/5thcross.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/5thcross.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/5thcross.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/5thcross.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/5thcross.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/5thcross.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/5thcross.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/5thcross.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/5thcross.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/5thcross.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/5thcross.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/5thcross.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/5thcross.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=5thcross.wordpress.com&amp;blog=849521&amp;post=23&amp;subd=5thcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://5thcross.wordpress.com/2007/06/05/windows-vista-aero-vs-linux-ubuntu-beryl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c99f99ad622f0e4c602b831680dba75e?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">phani</media:title>
		</media:content>
	</item>
		<item>
		<title>Configuring SQL Explorer Plugin</title>
		<link>http://5thcross.wordpress.com/2007/05/08/configuring-sql-explorer-plugin/</link>
		<comments>http://5thcross.wordpress.com/2007/05/08/configuring-sql-explorer-plugin/#comments</comments>
		<pubDate>Tue, 08 May 2007 08:19:37 +0000</pubDate>
		<dc:creator>Phani Kumar</dc:creator>
				<category><![CDATA[database]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[ide]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[plug-in]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://5thcross.wordpress.com/2007/05/08/configuring-sql-explorer-plugin/</guid>
		<description><![CDATA[We will configure the SQL Explorer Plug-in &#38; connect to the database. I will be using MySql server. It will be almost the same for all the databases. If you have not yet installed the plug-in please see my post on Installing Eclipse SQL Explorer Plug-in. From the eclipse menu, select window-&#62;preferences In the preference [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=5thcross.wordpress.com&amp;blog=849521&amp;post=21&amp;subd=5thcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>We will configure the SQL Explorer Plug-in &amp; connect to the database. I will be using MySql server. It will be almost the same for all the databases. If you have not yet installed the plug-in please see my post on <a href="http://5thcross.wordpress.com/2007/05/08/installing-eclipse-sql-explorer-plug-in/" target="_self">Installing Eclipse SQL Explorer Plug-in</a>.</p>
<ul>
<li>From the eclipse menu, select window-&gt;preferences</li>
<li>In the preference dialog box, select the SQL Explorer node.</li>
<li>Select the JDBC Drivers node.</li>
<li>Select the Driver you want to configure. We will configure MySQL Driver. So select the MySQL Driver &amp; click edit on the right hand side.</li>
<li>Select the &#8220;extra class path&#8221; tab in the change dialog box.</li>
<li>Add the MySQL Connector jar file by clicking on add button. You can download the connectors from MySQL site. You can download it directly from <a href="http://dev.mysql.com/downloads/connector/j/5.0.html">here</a>.</li>
<li>Once you added the jar file click on List Drivers on the right hand side. You can see all the loaded drivers. Select the one appropriate to you.</li>
<li>Enter the URL of your MySQL Server in the Example URL text box. Something like this &#8220;jdbc:mysql://localhost:3306/test&#8221;. Here &#8220;test&#8221; is the database name &amp; enter the url without quotes.</li>
<li>Click ok to finish the installation of the driver. You should be able to see a green tick mark for the driver we just installed.</li>
</ul>
<p>Now we will connect to the database.</p>
<ul>
<li>From the eclipse menu, select window-&gt;Open Perspective-&gt;other.</li>
<li>In the Open Perspective dialog box select SQL Explorer &amp; click ok.</li>
<li>Eclipse will be switched to SQL Explorer perspective.</li>
<li></li>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/5thcross.wordpress.com/21/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/5thcross.wordpress.com/21/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/5thcross.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/5thcross.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/5thcross.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/5thcross.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/5thcross.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/5thcross.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/5thcross.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/5thcross.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/5thcross.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/5thcross.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/5thcross.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/5thcross.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/5thcross.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/5thcross.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=5thcross.wordpress.com&amp;blog=849521&amp;post=21&amp;subd=5thcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://5thcross.wordpress.com/2007/05/08/configuring-sql-explorer-plugin/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c99f99ad622f0e4c602b831680dba75e?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">phani</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing Eclipse SQL Explorer Plug-in</title>
		<link>http://5thcross.wordpress.com/2007/05/08/installing-eclipse-sql-explorer-plug-in/</link>
		<comments>http://5thcross.wordpress.com/2007/05/08/installing-eclipse-sql-explorer-plug-in/#comments</comments>
		<pubDate>Tue, 08 May 2007 05:32:27 +0000</pubDate>
		<dc:creator>Phani Kumar</dc:creator>
				<category><![CDATA[database]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[ide]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://5thcross.wordpress.com/2007/05/08/installing-eclipse-sql-explorer-plug-in/</guid>
		<description><![CDATA[For installing SQL Explorer plug-in in eclipse 3.4 go to this updated post Installing Eclipse Explorer Plug-in in Eclipse Ganymede (Eclipse 3.4). Today I am going to show you how to install SQL Explorer plug-in in eclipse. There are two ways to install. Download the distribution file and unzip it into your Eclipse installation. Use [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=5thcross.wordpress.com&amp;blog=849521&amp;post=20&amp;subd=5thcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><font color="#ff0000">For installing SQL Explorer plug-in in eclipse 3.4 go to this updated post <a href="http://5thcross.wordpress.com/2008/12/02/installing-eclipse-sql-explorer-plug-in-in-eclipse-ganymede-eclipse-34/">Installing Eclipse Explorer Plug-in in Eclipse Ganymede (Eclipse 3.4)</a>.</font>
<p>Today I am going to show you how to install SQL Explorer plug-in in eclipse.</p>
<p>There are two ways to install. </p>
<ol>
<li class="MsoNormal">Download the distribution<br />     file and unzip it into your Eclipse installation.</li>
<li class="MsoNormal">Use the Eclipse Update<br />     Manager.</li>
</ol>
<p><strong>Installing using the Eclipse Update Manager</strong> </p>
<ul>
<li class="MsoNormal">From the Eclipse menu,<br />     select Help-&gt;Software Update-&gt;Find and Install. You will be<br />     displayed with a Install/Update dialog box.</li>
<li class="MsoNormal">Select Search for new<br />     features to install radio button &amp; click next.</li>
<li class="MsoNormal">Click on the New Remote<br />     Site on the right hand side of the Install dialog box</li>
<li class="MsoNormal">Enter the name as “SQL<br />     Explorer” &amp; “http://eclipsesql.sourceforge.net/” (without quotes) for<br />     the url in the New Update Site dialog box and click ok.</li>
<li class="MsoNormal">Select the SQL Explorer<br />     site in the Install dialog box and click finish.</li>
<li class="MsoNormal">Once the search is<br />     finished, it will present with the features to install.</li>
<li class="MsoNormal">Select the features you<br />     want to install. In this case select SQL Explorer branch &amp; click next.</li>
<li class="MsoNormal">Accept the license<br />     agreement &amp; click next.</li>
<li class="MsoNormal">Select the install location<br />     where you want to install this plug-in. By default it will be installed<br />     into the eclipse plug-in directory. If you want to add another location<br />     click on the change location button on the lower right hand corner and<br />     specify the directory where you want to install. Once you are finished<br />     with the selections click on finish button.</li>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/5thcross.wordpress.com/20/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/5thcross.wordpress.com/20/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/5thcross.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/5thcross.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/5thcross.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/5thcross.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/5thcross.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/5thcross.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/5thcross.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/5thcross.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/5thcross.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/5thcross.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/5thcross.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/5thcross.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/5thcross.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/5thcross.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=5thcross.wordpress.com&amp;blog=849521&amp;post=20&amp;subd=5thcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://5thcross.wordpress.com/2007/05/08/installing-eclipse-sql-explorer-plug-in/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c99f99ad622f0e4c602b831680dba75e?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">phani</media:title>
		</media:content>
	</item>
	</channel>
</rss>
