<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>NetBeans Guru &#187; Java</title>
	<atom:link href="http://nbguru.wordpress.com/category/languages/java-languages/feed/" rel="self" type="application/rss+xml" />
	<link>http://nbguru.wordpress.com</link>
	<description>"Learning NetBeans, the NetBeans way" - NetBeans Community Docs Contribution Coordinator</description>
	<pubDate>Fri, 25 Jul 2008 18:41:58 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
	<language>en</language>
			<item>
		<title>taT &#124; Editor Windows Reactivated!</title>
		<link>http://nbguru.wordpress.com/2008/07/25/tat-editor-windows-reactivated-8/</link>
		<comments>http://nbguru.wordpress.com/2008/07/25/tat-editor-windows-reactivated-8/#comments</comments>
		<pubDate>Fri, 25 Jul 2008 08:44:39 +0000</pubDate>
		<dc:creator>Varun</dc:creator>
		
		<category><![CDATA[Java]]></category>

		<category><![CDATA[NetBeans]]></category>

		<category><![CDATA[Platform]]></category>

		<category><![CDATA[Tips|Tricks]]></category>

		<guid isPermaLink="false">http://nbguru.wordpress.com/?p=268</guid>
		<description><![CDATA[Hey,
I have been blogging around for a while on hyperlinks in NetBeans IDE, what about the API&#8217;s, yeah the NetBeans API&#8217;s that helped me achieve a crucial milestone, i.e. activating the Opened panes! Also, the members of OpenIDE mailing lists, for giving accurate suggestions for making it possible.
Tricks
You must see numerous Developer FAQ&#8217;s based on [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hey,</p>
<p>I have been blogging around for a while on hyperlinks in NetBeans IDE, what about the API&#8217;s, yeah the NetBeans API&#8217;s that helped me achieve a crucial milestone, i.e. activating the Opened panes! Also, the members of OpenIDE mailing lists, for giving accurate suggestions for making it possible.</p>
<h3 style="text-align:left;"><strong>Tricks</strong></h3>
<p style="text-align:left;">You must see numerous <a href="http://wiki.netbeans.org/NetBeansDeveloperFAQ#section-NetBeansDeveloperFAQ-EditorAndEditedFiles" target="_blank">Developer FAQ&#8217;s</a> based on Editor and Edited Files. Some of them referring to get access of relevant opened Window for editing. Still, something was missing. So, I would share what I experienced recently.</p>
<pre>TopComponent[] comps = TopComponent.getRegistry().getOpened();
for (int i = 0; i &lt; comps.length; i++) {
    Node[] arr = comps[i].getActivatedNodes();
    for (int j = 0; j &lt; arr.length; j++) {
        EditorCookie ec = (EditorCookie)
arr[j].getCookie(EditorCookie.class);
        if (ec != null) {
            JEditorPane[] panes = ec.getOpenedPanes();
            if (panes != null) {
                // USE panes
            }
        }
    }
}</pre>
<p>This has one issue, it no longers returns an array of <strong>TopComponent</strong>&#8217;s in the 1st line, in 6.0 and 6.1, I saw it returned <strong>Set&lt;TopComponent&gt;</strong>, so outer loop also changes like this-</p>
<pre>Set&lt;TopComponent&gt; comps = TopComponent.getRegistry().getOpened();
for (TopComponent tc: comps) {
    Node[] arr = tc.getActivatedNodes();
    for (int j = 0; j &lt; arr.length; j++) {
        EditorCookie ec = (EditorCookie)
arr[j].getCookie(EditorCookie.class);
        if (ec != null) {
            JEditorPane[] panes = ec.getOpenedPanes();
            if (panes != null) {
                // USE panes
            }
        }
    }
}</pre>
<p style="text-align:center;"><strong>What about My Usecase?</strong></p>
<p style="text-align:left;">Oh, yeah! I wanted to tell you about re-activating opened panes. After interacting with <strong>Wade</strong> on OpenIDE mailing lists. I created this method- <a href="http://wiki.netbeans.org/RevampedHyperlinkNavigation#section-RevampedHyperlinkNavigation-BackgroundProcessOpenHTMLThread" target="_blank">verifyHyperlinkStatus()</a>, please have a look, you might have to scroll a bit. So, I have commented 2 lines there-</p>
<pre>//final int index = k;
/*
After some coding...
*/
//tc[index].requestActive();</pre>
<p>tc[index] is a particular TopComponent instance obtained by iterating over an Array of <strong>TopComponent</strong>&#8217;s. <strong>Array?</strong> But, we have just discussed its <strong>Set&lt;TopComponent&gt;</strong> not an Array. You&#8217;re in for another surprise-</p>
<pre>//To obtain an array, use this-
final TopComponent[] tc = TopComponent.getRegistry().
getOpened().toArray(new TopComponent[0]);
//As mentioned in the following reference tutorial.</pre>
<p>Referenced Tutorial- <a href="http://wiki.netbeans.org/RevampedHyperlinkNavigation" target="_blank">http://wiki.netbeans.org/RevampedHyperlinkNavigation</a></p>
<p style="text-align:center;"><strong>final</strong>, but why?</p>
<p style="text-align:left;">Actually, when you deal with methods that required to run within a <strong>AWT Thread</strong>, invoked by various means, then the variables used, within their implemented <strong>run()</strong> method, if defined outside should be made final so as to prevent it from any modification. In Java, final modifier means that an identifier would be constant within a block of code. In this case, within a method- <strong>verifyHyperlinkStatus()</strong></p>
<p style="text-align:left;">So, <strong>index</strong> was modified as final, and was used within an <strong>AWT Thread</strong> inside a <strong>if-block</strong>, which invoked <strong>tc</strong>[index].<strong>requestActive()</strong>, i.e. to activate that window, if its already opened.</p>
<p style="text-align:center;"><strong>Why I am doing this?</strong></p>
<p style="text-align:left;">As I have to re-activate a opened editor window which was already opened by clicking a hyperlink in HTML file. So, I was earlier using <strong>setCaretPositon()</strong>, that&#8217;s why I had to <strong>requestActive()</strong>, to show that editor window again.</p>
<h3 style="text-align:left;"><strong>Tips to Remember</strong></h3>
<p style="text-align:left;"><strong>Vita</strong> suggested to use <strong>NbEditorUtilities</strong> instead of a combination of setCaretPosition() and requestActive(). So, I did that by commenting the following statements present in one of the <a href="http://wiki.netbeans.org/RevampedHyperlinkNavigation#section-RevampedHyperlinkNavigation-OverloadedMethods" target="_blank">setPosition()</a> methods.</p>
<pre>NbEditorUtilities.getLine(d, index, true).show(Line.SHOW_GOTO);
//pane[pos].setCaretPosition(index);</pre>
<p style="text-align:left;">Here, <strong>index</strong> is found using <strong>indexOf()</strong>, and d is the document, whose contents were used to retrieve the index. This is indeed a great utility, why? Because, it opens/re-activates the opened document and places the cursor at the beginning of the line, that was searched.</p>
<h3 style="text-align:left;">Final thoughts</h3>
<p style="text-align:left;">This time <strong>all was said and done</strong>, rather than the saying &#8220;All is said, more than done!&#8221;.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nbguru.wordpress.com/268/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nbguru.wordpress.com/268/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nbguru.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nbguru.wordpress.com/268/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nbguru.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nbguru.wordpress.com/268/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nbguru.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nbguru.wordpress.com/268/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nbguru.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nbguru.wordpress.com/268/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nbguru.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nbguru.wordpress.com/268/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nbguru.wordpress.com&blog=3440143&post=268&subd=nbguru&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nbguru.wordpress.com/2008/07/25/tat-editor-windows-reactivated-8/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/nvarun-128.jpg" medium="image">
			<media:title type="html">nvarun</media:title>
		</media:content>
	</item>
		<item>
		<title>Article &#124; Auto-Format in NetBeans</title>
		<link>http://nbguru.wordpress.com/2008/06/30/auto-format-in-netbeans/</link>
		<comments>http://nbguru.wordpress.com/2008/06/30/auto-format-in-netbeans/#comments</comments>
		<pubDate>Mon, 30 Jun 2008 18:20:37 +0000</pubDate>
		<dc:creator>Varun</dc:creator>
		
		<category><![CDATA[Java]]></category>

		<category><![CDATA[NetBeans]]></category>

		<category><![CDATA[Others]]></category>

		<category><![CDATA[nb-61]]></category>

		<guid isPermaLink="false">http://nbguru.wordpress.com/?p=207</guid>
		<description><![CDATA[Hey,
Today, I started off working with JSF Framework, executed a series of well-described, neat tutorials which helped me go through the initial phase easily. Now, I am confident in doing what these tutorials explained.
Anyways, I came across a shortcut key, its Alt+Shift+F, used for Formatting the code present in the editor. Today, I used this [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hey,</p>
<p>Today, I started off working with <a href="http://nbguru.wordpress.com/proj-netbeans/javaserverfaces/" target="_blank">JSF Framework</a>, executed a series of well-described, neat tutorials which helped me go through the initial phase easily. Now, I am confident in doing what these tutorials explained.</p>
<p>Anyways, I came across a shortcut key, its <strong>Alt+Shift+F</strong>, used for Formatting the code present in the editor. Today, I used this key combo, in JSP using JSF Framework and Java Classes, as well.</p>
<p>Remember, how shortcut key&#8217;s are registered? This means this action is registered in the XML Layer of some module, as <strong>O-S-F.shadow</strong>! Anyways, that&#8217;s a different issue. Well, seriously I feel why the hell I came across this key, so late&#8230;It could have helped me save a lot of time, in many Java Projects I made using NetBeans!</p>
<p><em><strong>eNjoy Technology&#8230;</strong></em></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nbguru.wordpress.com/207/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nbguru.wordpress.com/207/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nbguru.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nbguru.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nbguru.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nbguru.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nbguru.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nbguru.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nbguru.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nbguru.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nbguru.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nbguru.wordpress.com/207/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nbguru.wordpress.com&blog=3440143&post=207&subd=nbguru&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nbguru.wordpress.com/2008/06/30/auto-format-in-netbeans/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/nvarun-128.jpg" medium="image">
			<media:title type="html">nvarun</media:title>
		</media:content>
	</item>
		<item>
		<title>MySQL Admin and NetBeans</title>
		<link>http://nbguru.wordpress.com/2008/06/01/mysql-admin-and-netbeans/</link>
		<comments>http://nbguru.wordpress.com/2008/06/01/mysql-admin-and-netbeans/#comments</comments>
		<pubDate>Sat, 31 May 2008 18:44:39 +0000</pubDate>
		<dc:creator>Varun</dc:creator>
		
		<category><![CDATA[Blog Contest]]></category>

		<category><![CDATA[Java]]></category>

		<category><![CDATA[MySQL]]></category>

		<category><![CDATA[NetBeans]]></category>

		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://nbguru.wordpress.com/?p=154</guid>
		<description><![CDATA[Hi,
Few days back, I had blogged about &#8220;Tryst with MySQL&#8220;. Today, I shall move ahead and give an insight on database management with MySQL using NetBeans.

Its meant for Windows user only, rest can follow too, though just for the content and may try exploring these steps for their OS as well.

MySQL Tools -
Apart from being [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hi,</p>
<p>Few days back, I had blogged about <strong>&#8220;<a href="http://nbguru.wordpress.com/2008/05/27/tryst-with-mysql/" target="_blank">Tryst with MySQL</a>&#8220;</strong>. Today, I shall move ahead and give an insight on database management with MySQL using NetBeans.</p>
<blockquote>
<p style="text-align:center;">Its meant for<strong> Windows user </strong>only<strong>, </strong>rest can follow too, though just for the content and may try exploring these steps for their OS as well.</p>
</blockquote>
<p><strong>MySQL Tools -</strong></p>
<p>Apart from being a popular open source database. It also has some amazing tools, which have been formed, due to years of users invaluable feedback, on their forums. Here&#8217;s what the website describes about MySQL Administrator;</p>
<blockquote><p><strong>MySQL Administrator</strong> is a powerful visual administration console that enables you to easily administer your MySQL environment and gain significantly better visibility into how your databases are operating</p></blockquote>
<p>Lets understand in a simple, yet an interesting manner, how can we configure <strong>MySQL Server</strong> using it.</p>
<p><strong>MySQL Community Server 5.0 -</strong></p>
<p>Its free, thats why I used it! Also, its supported by <strong>NetBeans 6.0 </strong>and<strong> 6.1 FCS</strong>. Anyways, there are two methods of setting up the server, either by installing OR by not installing. <strong>Surprised! </strong>I was too, when I encountered this on their website.</p>
<p>So, you need to <strong><a href="http://dev.mysql.com/downloads/mysql/5.0.html" target="_blank">download</a></strong> the appropriate version and get started. if you go for installation, then just install it, by running the appropriate installer. By the way, its cross-platform, I guess you all might know this <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>If you go for the other, that means you are a hard working soul, who likes getting deep into the technicalities of the stuff, and if its open source then why not? So, download it and then, you could follow a long series of steps to get started (Refer to this <strong><a href="http://dev.mysql.com/doc/administrator/" target="_blank">MySQL Documentation</a></strong>) <strong>OR </strong>you could go my way.</p>
<p>I had tried the later one and it took 1-2 hours, to get things running smoothly. Now, I am going to make your life simple and easy. So, lets get rolling;</p>
<ul>
<li>Download the archive, if you still have not done it.</li>
<li>Extract it and store it where ever you feel, but I would recommend storing it in <strong>C:/</strong> if you are a Windows user, under a <strong>MySQL</strong> <strong>folder</strong>.</li>
<li>Now, download the MySQL Admin tool, and install it.</li>
<li>After installing, create a short-cut for <em>MySQLAdministrator.exe</em> (on the Desktop), stored under this kind of folder, <strong>C:/Program Files/MySQL/MySQL Tools for <em>version</em>/<br />
</strong></li>
<li>Run this application, it will prompt you for a connection <em>host, port username </em>and<em> password</em>.</li>
<li>Just press <strong>Ctrl,</strong> don&#8217;t release it and click on <strong>Skip</strong> button, which is initially the <strong>Cancel</strong> button.</li>
<li>Click on <strong>Service Control</strong>, in the left panel and then, click on <strong>Configure Service</strong> Tab. Here, you would see a button at the bottom the UI, click on <em>Install new Service</em>.<em> </em>Name it as <strong>MySQL.</strong></li>
<li><strong>OR, </strong>you can right-click inside the <strong>Installed Services</strong> section, in left panel. A context-menu pops-up with 3 options. Select <em>Install new Service</em>.<em> </em>Name it as <strong>MySQL.</strong></li>
<li>Now, do the following entries; what I did I just made two changes there. In the <em>Config Filename</em> text-field, enter the path of the <strong>my.ini, </strong>its the option file.
<ol>
<li>You may either create option file on your own, OR you may copy some pre-defined option files, stored in MySQL Server extracted folder.</li>
<li>Copy any one of the files having <strong>my-</strong> as prefix and copy, paste it into the <strong>data folder</strong> in that directory, rename it to <strong>my.ini</strong></li>
</ol>
</li>
</ul>
<p><strong></strong></p>
<ul>
<li>Now, back to the Admin, in the <em>Path to binary</em> field, browse to the <strong>bin folder</strong> inside the MySQL Server extracted folder.</li>
<li>Then, click button - <em>Apply Changes</em>. Switch over to the <strong>Startup Variable</strong> Tab. Click button -  <em>Choose Option File </em>and browse to the directory, where we had created the <strong>my.ini</strong> file.</li>
<li>Check the following checkboxes -
<ol>
<li><strong>TCP Port:</strong> 3306</li>
<li><strong>Base Directory:</strong> C:/Program Files/MySQL/mysql-5.0.51a-win32</li>
<li><strong>Data Directory:</strong> C:/Program Files/MySQL/mysql-5.0.51a-win32/data</li>
<li><strong>Default Storage</strong> - that&#8217;s upto you, I selected InnoDB.</li>
</ol>
</li>
<li>Apply changes and switch to Service Control and then, Start/Stop Service. Now, press <strong>Start Service</strong>.</li>
<li>You are ready to use <strong>MySQL Server</strong>. Click on <em>File Menu</em> and select <em>New Instance Connection&#8230;</em></li>
<li>Again, you would see the prompt which you had earlier came across, this time, don&#8217;t alter default values, just click <strong>OK</strong>.</li>
<li>Now, it would show the Administrator with all the options, which the user must access to administer database, manage connections, add/delete users and grant/revoke privileges.<em><br />
</em></li>
</ul>
<p><strong>MySQL and NetBeans  -</strong></p>
<p>So, you want to use MySQL with NetBeans, I guess Java is your language of choice for development in NetBeans, as it provides such a fabulous <strong>Java Editor</strong> since <em>6.0 FCS</em> and now, its really amazing in <em>6.1 FCS</em>. You could try making a database application using <strong>Swing Application Framework</strong>, which lets you create a <strong>CRUD</strong> application.</p>
<p>Firstly, you need a <strong><a href="http://java.sun.com/products/jdbc/driverdesc.html" target="_blank">JDBC driver</a></strong>, as we are using Java to connect to MySQL databases, then you have to go for <strong><a href="http://dev.mysql.com/downloads/connector/" target="_blank">Connector/J</a></strong> (<strong>IV Type Driver</strong>), there are some more available for other languages too.</p>
<p>Here is a fantastic tutorial, which would enable you to get started with MySQL database management using NetBeans.</p>
<blockquote>
<p style="text-align:center;"><strong><a href="http://www.netbeans.org/kb/60/ide/mysql.html" target="_blank">Connecting to a MySQL database</a></strong></p>
</blockquote>
<p>Today, I tried all this and started working with MySQL, it was good, everything worked smoothly, until the following happened.</p>
<p>I had an <a href="http://www.netbeans.org/issues/show_bug.cgi?id=136216" target="_blank">issue</a> while trying to disconnect database using the Admin tool, ran by NetBeans Database Explorer. So, I have filed a bug report, just click that link, to see more details and an attached image too, justifying my point.</p>
<p><em><strong>eNjoy Technology&#8230;</strong></em></p>
<blockquote>
<p style="text-align:center;"><strong>This is being submitted for review to the blogging contest - </strong><a href="http://www.sun.com/products-n-solutions/reviews/studentzone/contest.jsp" target="_blank">Student Reviews NetBeans 6.1 and OpenSolaris</a>!<br />
Author - <strong>Varun Nischal, </strong>University -<strong> JIIT University<br />
</strong><br />
<a href="http://technorati.com/faves?sub=addfavbtn&amp;add=http://nbguru.wordpress.com"><img src="http://static.technorati.com/pix/fave/tech-fav-1.png" alt="Add to Technorati Favorites" /></a></p>
</blockquote>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nbguru.wordpress.com/154/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nbguru.wordpress.com/154/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nbguru.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nbguru.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nbguru.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nbguru.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nbguru.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nbguru.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nbguru.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nbguru.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nbguru.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nbguru.wordpress.com/154/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nbguru.wordpress.com&blog=3440143&post=154&subd=nbguru&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nbguru.wordpress.com/2008/06/01/mysql-admin-and-netbeans/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/nvarun-128.jpg" medium="image">
			<media:title type="html">nvarun</media:title>
		</media:content>

		<media:content url="http://static.technorati.com/pix/fave/tech-fav-1.png" medium="image">
			<media:title type="html">Add to Technorati Favorites</media:title>
		</media:content>
	</item>
		<item>
		<title>Tryst with MySQL</title>
		<link>http://nbguru.wordpress.com/2008/05/27/tryst-with-mysql/</link>
		<comments>http://nbguru.wordpress.com/2008/05/27/tryst-with-mysql/#comments</comments>
		<pubDate>Tue, 27 May 2008 08:53:45 +0000</pubDate>
		<dc:creator>Varun</dc:creator>
		
		<category><![CDATA[Java]]></category>

		<category><![CDATA[MySQL]]></category>

		<category><![CDATA[NetBeans]]></category>

		<category><![CDATA[nb-60]]></category>

		<category><![CDATA[nb-61]]></category>

		<guid isPermaLink="false">http://nbguru.wordpress.com/?p=146</guid>
		<description><![CDATA[Hey,
Today, I started off working with MySQL after a long break. I have tried it before too, using WAMPServer, which had phpMyAdmin to manage the database for website development. I was using it for the first time then, so never really went into much technicalities.
During the past 6 months, NetBeans 6.0 FCS and 6.1 FCS [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hey,</p>
<p>Today, I started off working with <strong>MySQL</strong> after a long break. I have tried it before too, using <a href="http://www.en.wampserver.com/" target="_blank">WAMPServer</a>, which had <strong>phpMyAdmin</strong> to manage the database for website development. I was using it for the first time then, so never really went into much technicalities.</p>
<blockquote><p>During the past 6 months, <strong>NetBeans 6.0 FCS</strong> and <strong>6.1 FCS</strong> were released. I am glad to use both of them, as both made my work easier than ever before. Just because of the speed which <strong>6.1</strong> provides, I have started shifting from <strong>6.0</strong>!</p></blockquote>
<p>Also, <a href="http://blogs.sun.com/jonathan/entry/winds_of_change_are_blowing" target="_blank">Sun acquired MySQL</a> during this time and I was happy to see this acquisition taking place, as <strong>NetBeans</strong> would support <strong>MySQL</strong> database&#8217;s as well. It would help me to learn working with MySQL easily, yet efficiently.</p>
<p><strong>NetBeans 6.1</strong> has provided a special <a href="http://dlc.sun.com.edgesuite.net/netbeans/6.1/mysql_bundle/" target="_blank">download bundle</a> which bundles <strong>MySQL Community Server 5.0 </strong>and <strong>GlassFish V2 Update 2</strong>!</p>
<p>I never used <strong>MySQL</strong> support in <strong>NetBeans 6.0</strong>, actually didn&#8217;t do any sort of database management in NetBeans since <strong>5.5 FCS</strong>. Now, I have to create a database application as a semester project. So, I am going to use MySQL support in NetBeans 6.1!</p>
<p>Lets see what happens&#8230;<em><strong>sTay Tuned!</strong></em></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nbguru.wordpress.com/146/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nbguru.wordpress.com/146/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nbguru.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nbguru.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nbguru.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nbguru.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nbguru.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nbguru.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nbguru.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nbguru.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nbguru.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nbguru.wordpress.com/146/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nbguru.wordpress.com&blog=3440143&post=146&subd=nbguru&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nbguru.wordpress.com/2008/05/27/tryst-with-mysql/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/nvarun-128.jpg" medium="image">
			<media:title type="html">nvarun</media:title>
		</media:content>
	</item>
		<item>
		<title>Project Unfinished!</title>
		<link>http://nbguru.wordpress.com/2008/05/12/project-unfinished/</link>
		<comments>http://nbguru.wordpress.com/2008/05/12/project-unfinished/#comments</comments>
		<pubDate>Mon, 12 May 2008 07:09:26 +0000</pubDate>
		<dc:creator>Varun</dc:creator>
		
		<category><![CDATA[.NET]]></category>

		<category><![CDATA[Java]]></category>

		<category><![CDATA[NetBeans]]></category>

		<category><![CDATA[Others]]></category>

		<category><![CDATA[Personal]]></category>

		<category><![CDATA[VB]]></category>

		<guid isPermaLink="false">http://nbguru.wordpress.com/?p=123</guid>
		<description><![CDATA[Guys,
I had also once blogged about a project which I was going to do, i.e. to make a Visual Basic equivalent of Java project. Here&#8217;s the following excerpt from the other blog.
I never ever thought I would learn Visual Basic like this, but this is life! I had made a semester project coded in Java, [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><span style="font-family:trebuchet ms;">Guys,</span></p>
<p>I had also once <a href="http://bondprogrammers.blogspot.com/2008/03/project-coding-from-java-to-vb-part-1.html" target="_blank">blogged</a> about a project which I was going to do, i.e. to make a Visual Basic equivalent of Java project. Here&#8217;s the following excerpt from the other blog.</p>
<blockquote><p>I never ever thought I would learn Visual Basic like this, but this is life! I had made a semester project coded in Java, using NetBeans IDE. A good friend of mine, wanted to do the same, not in Java, but in Visual Basic&#8230;</p></blockquote>
<p>You may continue reading about it there itself, here I am just telling you that its finished and I didn&#8217;t get time to blog about it, though I finished it few days back and in <strong>6 hrs.</strong> flat!</p>
<p>Soon, I would be detailing more about it there, so keep an eye on the <a href="http://bondprogrammers.blogspot.com" target="_blank">other blog</a>.</p>
<p><em><strong>eNjoy Technology&#8230;..</strong></em></p>
<blockquote></blockquote>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nbguru.wordpress.com/123/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nbguru.wordpress.com/123/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nbguru.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nbguru.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nbguru.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nbguru.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nbguru.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nbguru.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nbguru.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nbguru.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nbguru.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nbguru.wordpress.com/123/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nbguru.wordpress.com&blog=3440143&post=123&subd=nbguru&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nbguru.wordpress.com/2008/05/12/project-unfinished/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/nvarun-128.jpg" medium="image">
			<media:title type="html">nvarun</media:title>
		</media:content>
	</item>
	</channel>
</rss>