<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[JavaRanch: Latest posts for the topic "Removing Eclipse Ganymede"]]></title>
		<link>http://www.coderanch.com/forums/t/12/IDEs-Version-Control-other-tools/Removing-Eclipse-Ganymede</link>
		<description><![CDATA[Latest messages posted in the topic "Removing Eclipse Ganymede"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[Could  anybody help me with removing Eclipse Ganymede?<br /> Because of problems with installing the MySQL JDBC driver and nobody seems to have an answer for this problem, the only solution that remains, is removing and reinstalling Eclipse . I want to remove Eclipse with leaving no traces anymore of the program. So when I reinstall Eclipse, there can be no conflict anymore with installing the MySQL JDBC driver.  Thanks for Your help.<br /> <br /> Emmanuel]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2028041</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2028041</link>
				<pubDate><![CDATA[Tue, Jul 21 2009 16:43:56 MDT]]></pubDate>
				<author><![CDATA[Emmanuel Waûters]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[Hi,<br /> <br /> just remove the directory Eclipse is installed. <br /> <br /> If you also want to clean-up the workspace you are using start Eclipse with the flag -clean after you have re-installed it.<br /> <br /> Best regards, Lars]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2028110</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2028110</link>
				<pubDate><![CDATA[Tue, Jul 21 2009 21:34:48 MDT]]></pubDate>
				<author><![CDATA[Lars Vogel]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[I've removed the Eclipse-map and reinstalled Eclipse Ganymede again. I still get the same failure announcements as before: I can't install MySQL JDBC driver. What can I do More?]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2028868</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2028868</link>
				<pubDate><![CDATA[Wed, Jul 22 2009 14:29:01 MDT]]></pubDate>
				<author><![CDATA[Emmanuel Waûters]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[What problem do you face with the SQL Driver?]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2028875</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2028875</link>
				<pubDate><![CDATA[Wed, Jul 22 2009 14:45:45 MDT]]></pubDate>
				<author><![CDATA[Lars Vogel]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[Dear Mister,<br /> <br /> Thanks a lot for Your help. I have a topic MySQL JDBC driver in forum JDBC where I explain everything what I get.<br /> I get everytime that their isn't a driver available, and when I install a driver I get that their is already one available. So i have a SQL problem<br /> : Communications link failure.<br /> <br /> If You could help me with solving this problem a bottle of champagne is Yours.<br /> <br /> Thanks forward.<br /> <br /> <br /> Emmanuel Waûters<br /> ]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2028879</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2028879</link>
				<pubDate><![CDATA[Wed, Jul 22 2009 14:53:02 MDT]]></pubDate>
				<author><![CDATA[Emmanuel Waûters]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[Sounds weird.<br /> <br /> You may want to give Eclipse DTP a try. The following tutorial is based on Apache Derby but I would assume that once you have done this, you should be able to adapt it for MySQL.<br /> <br /> <a class="snap_shots" href="http://www.vogella.de/articles/EclipseDataToolsPlatform/article.html" target="_blank" rel="nofollow">http://www.vogella.de/articles/EclipseDataToolsPlatform/article.html</a><br /> <br /> MySQL server crashes if I try to install in on my machine so I can unfortunately not try with MySQL.<br /> <br /> ]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2028881</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2028881</link>
				<pubDate><![CDATA[Wed, Jul 22 2009 14:56:11 MDT]]></pubDate>
				<author><![CDATA[Lars Vogel]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[Dear Mister,<br /> <br /> I'lll trie to fix it with Your explaination. I have wrote some code:<br /> <br /> import <a href="http://java.sun.com/javase/6/docs/api/java/sql/Connection.html" class="api" title="Java API" target="_new" rel="nofollow">java.sql.Connection</a>;<br /> import <a href="http://java.sun.com/javase/6/docs/api/java/sql/DriverManager.html" class="api" title="Java API" target="_new" rel="nofollow">java.sql.DriverManager</a>;<br /> import <a href="http://java.sun.com/javase/6/docs/api/java/sql/SQLException.html" class="api" title="Java API" target="_new" rel="nofollow">java.sql.SQLException</a>;<br /> <br /> public class ConnectDB {<br /> 	public static void main(String[] args) {<br /> 		try {<br /> 			Class.forName("com.mysql.jdbc.Driver");<br /> 			Connection con = <a href="http://java.sun.com/javase/6/docs/api/java/sql/DriverManager.html" class="api" title="Java API" target="_new" rel="nofollow">DriverManager</a>.<br /> 				getConnection("jdbc:mysql://localhost/bierendb","root", "");<br /> 			System.out.println("Connection OK");<br /> 			con.close();<br /> 		} catch (<a href="http://java.sun.com/javase/6/docs/api/java/lang/ClassNotFoundException.html" class="api" title="Java API" target="_new" rel="nofollow">ClassNotFoundException</a> e) {<br /> 			System.out.println("JDBC driver niet aanwezig");<br /> 		} catch (<a href="http://java.sun.com/javase/6/docs/api/java/sql/SQLException.html" class="api" title="Java API" target="_new" rel="nofollow">SQLException</a> e) {<br /> 			System.out.println("SQL probleem");<br /> 			System.out.println(e.getMessage());<br /> 			e.printStackTrace();<br /> 		}<br /> 	}<br /> }<br /> <br /> and got as output in the console the following:<br /> <br /> SQL probleem<br /> Communications link failure<br /> <br /> Last packet sent to the server was 0 ms ago.<br /> com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure<br /> <br /> Last packet sent to the server was 0 ms ago.<br /> 	at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)<br /> 	at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)<br /> 	at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)<br /> 	at java.lang.reflect.Constructor.newInstance(Constructor.java:513)<br /> 	at com.mysql.jdbc.Util.handleNewInstance(Util.java:406)<br /> 	at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1074)<br /> 	at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2120)<br /> 	at com.mysql.jdbc.ConnectionImpl.&lt;init&gt;(ConnectionImpl.java:723)<br /> 	at com.mysql.jdbc.JDBC4Connection.&lt;init&gt;(JDBC4Connection.java:46)<br /> 	at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)<br /> 	at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)<br /> 	at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)<br /> 	at java.lang.reflect.Constructor.newInstance(Constructor.java:513)<br /> 	at com.mysql.jdbc.Util.handleNewInstance(Util.java:406)<br /> 	at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:302)<br /> 	at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:282)<br /> 	at java.sql.DriverManager.getConnection(DriverManager.java:582)<br /> 	at java.sql.DriverManager.getConnection(DriverManager.java:185)<br /> 	at ConnectDB.main(ConnectDB.java:10)<br /> Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure<br /> <br /> Last packet sent to the server was 0 ms ago.<br /> 	at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)<br /> 	at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)<br /> 	at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)<br /> 	at java.lang.reflect.Constructor.newInstance(Constructor.java:513)<br /> 	at com.mysql.jdbc.Util.handleNewInstance(Util.java:406)<br /> 	at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1074)<br /> 	at com.mysql.jdbc.MysqlIO.&lt;init&gt;(MysqlIO.java:335)<br /> 	at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2043)<br /> 	... 12 more<br /> Caused by: <a href="http://java.sun.com/javase/6/docs/api/java/net/ConnectException.html" class="api" title="Java API" target="_new" rel="nofollow">java.net.ConnectException</a>: Connection refused: connect<br /> 	at java.net.PlainSocketImpl.socketConnect(Native Method)<br /> 	at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)<br /> 	at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)<br /> 	at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)<br /> 	at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)<br /> 	at java.net.Socket.connect(Socket.java:519)<br /> 	at java.net.Socket.connect(Socket.java:469)<br /> 	at <a href="http://java.sun.com/javase/6/docs/api/java/net/Socket.html" class="api" title="Java API" target="_new" rel="nofollow">java.net.Socket</a>.&lt;init&gt;(Socket.java:366)<br /> 	at <a href="http://java.sun.com/javase/6/docs/api/java/net/Socket.html" class="api" title="Java API" target="_new" rel="nofollow">java.net.Socket</a>.&lt;init&gt;(Socket.java:209)<br /> 	at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:253)<br /> 	at com.mysql.jdbc.MysqlIO.&lt;init&gt;(MysqlIO.java:284)<br /> 	... 13 more<br /> <br /> <br /> ]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2028883</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2028883</link>
				<pubDate><![CDATA[Wed, Jul 22 2009 15:03:08 MDT]]></pubDate>
				<author><![CDATA[Emmanuel Waûters]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[<blockquote>
			<div>
				<cite>Emmanuel Waûters wrote:</cite>I've removed the Eclipse-map and reinstalled Eclipse Ganymede again. I still get the same failure announcements as before: I can't install MySQL JDBC driver. </div>
		</blockquote><br /> <br /> Of course, I'm sorry someone gave you that bad advice. Uninstalling and reinstalling <i>anything</i> almost never makes sense, and rarely works.<br /> <br /> Anyway, the error trace you've shown us very clearly illustrates that the driver is installed correctly, but there's no database server running on localhost on the default port. Have you started mysqld? Can you talk to it using the "mysql" command-line tool?]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2028886</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2028886</link>
				<pubDate><![CDATA[Wed, Jul 22 2009 15:19:27 MDT]]></pubDate>
				<author><![CDATA[Ernest Friedman-Hill]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[Dear Mister,<br /> <br /> <br /> Thanks too for Your help. I opened MySQL database and went to the MySQL Query Browser to trie some entered queries and used them in going trough some databases I put in MySQL, and they succeeded. So they have to work and I think MySQL works well.<br />  ]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2028892</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2028892</link>
				<pubDate><![CDATA[Wed, Jul 22 2009 15:36:33 MDT]]></pubDate>
				<author><![CDATA[Emmanuel Waûters]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[Did you by any chance change the port MySQL uses? You can check this by going into the mysql command line tool and entering:<br /> <br /> show variables like 'port';<br /> <br /> Or if you prefer, in the MySQL Administrator the port is shown on the Server Information page. If it says anything other than 3306 then you must change the connection URL in your app to include that port.<br /> <br /> Oh, and just as a sanity check - your <a href="http://www.javaranch.com" class="faq" title="A Friendly Place for Java Greenhorns" target="_new">Java</a> app is running on the same system as MySQL, right? <br /> ]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2029623</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2029623</link>
				<pubDate><![CDATA[Thu, Jul 23 2009 12:43:47 MDT]]></pubDate>
				<author><![CDATA[Peter Johnson]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[Hallo,<br /> <br /> Thanks for the help You offering me. MySQL indicates that the Server Host is localhost, the Port is 3306 and the Stored Connection is empty. When I start and log in, I see the main page where is written MySQL server is running. When I push the button catalogs, I see the database I need: bierendb. <br /> When I choose MySQL at Connection Profile Types from Database Connections , I fill in at Name BierenLocalHost and let Descripton blank. Then I get at Specify a Driver and Connections Details for Database:  Database, for URL:    jdbc:mysql://localhost:3306/database User name: root. Maybe I have to change here something?<br /> <br /> Thanks forward.<br /> <br /> <br /> Emmanuel<br /> <br /> <br /> ]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2029692</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2029692</link>
				<pubDate><![CDATA[Thu, Jul 23 2009 14:10:31 MDT]]></pubDate>
				<author><![CDATA[Emmanuel Waûters]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[What OS? What version of MySQL? And what is the name of the MySQL JDBC driver JAR file?<br /> <br /> I ran you code on my PC (changed the URL to match one of my existing databases) and it worked. Here is my environment:<br /> <br /> Windows Vista Professional<br /> MySQL 5.1.35 (community)<br /> mysql-connector-java-5.1.6.jar<br /> <a href="http://www.javaranch.com" class="faq" title="A Friendly Place for Java Greenhorns" target="_new">Java</a>(TM) SE Runtime Environment (build 1.6.0_14-b08)<br /> <br /> Also, see if any of this helps: <a class="snap_shots" href="http://ubuntuforums.org/showthread.php?t=897729" target="_blank" rel="nofollow">http://ubuntuforums.org/showthread.php?t=897729</a>]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2029743</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2029743</link>
				<pubDate><![CDATA[Thu, Jul 23 2009 16:46:39 MDT]]></pubDate>
				<author><![CDATA[Peter Johnson]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[MySQL 5.1.34-community via TCP/IP<br /> Windows Vista Business <br /> <a href="http://www.javaranch.com" class="faq" title="A Friendly Place for Java Greenhorns" target="_new">Java</a>(TM) 6 Standard Edition Version 6 Update 13 (build 1.6.0_13-b03) <br /> <br /> When I looked  and choose the driver :<br /> <br /> MySQL JDBC Driver MySQL 5.1.<br /> <br /> <br /> I got as answer :<br /> <br />  Unable to locate JAR/zip in file system as specified by the driver definition: mysql-connector-java-5.1.0-bin.jar.<br /> <br /> When I looked further, I see this jar-file:<br /> mysql-connector-java-5.1.0-bin.jar<br /> ]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2029861</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2029861</link>
				<pubDate><![CDATA[Thu, Jul 23 2009 17:56:38 MDT]]></pubDate>
				<author><![CDATA[Emmanuel Waûters]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[Please post the contents of your c:/windows/system32/drivers/etc/hosts file.<br /> <br /> Also, please use either "netstat -ab" or tcpview to see which port(s) mysql has open. On my system, netstat gives:<br /> <br /> <pre>  TCP    0.0.0.0:3306           hostname:0             LISTENING
 [mysqld.exe]</pre><br /> <br /> Also, do you have both IPv4 and IPv6 protocols set up for your network connection?]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2029881</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2029881</link>
				<pubDate><![CDATA[Thu, Jul 23 2009 19:27:20 MDT]]></pubDate>
				<author><![CDATA[Peter Johnson]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[This is the content of the c:/windows/system32/drivers/etc/hosts file<br /> <br /> # Copyright (c) 1993-2006 Microsoft Corp.<br /> #<br /> # This is a sample HOSTS file used by Microsoft TCP/IP for Windows.<br /> #<br /> # This file contains the mappings of IP addresses to host names. Each<br /> # entry should be kept on an individual line. The IP address should<br /> # be placed in the first column followed by the corresponding host name.<br /> # The IP address and the host name should be separated by at least one<br /> # space.<br /> #<br /> # Additionally, comments (such as these) may be inserted on individual<br /> # lines or following the machine name denoted by a '#' symbol.<br /> #<br /> # For example:<br /> #<br /> #      102.54.94.97     rhino.acme.com          # source server<br /> #       38.25.63.10     x.acme.com              # x client host<br /> <br /> <br /> ::1             localhost<br /> <br /> <br /> Where I have to fill in either "netstat -ab" or tcpview to see which port(s) mysql has open?<br /> <br /> Where could I find this - and what does it means -: both IPv4 and IPv6 protocols set up for my network connection??<br /> <br /> I'm a bit new into the programming world.<br />  <br /> Thanks forward,<br /> <br /> Emmanuel<br /> ]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2030536</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2030536</link>
				<pubDate><![CDATA[Fri, Jul 24 2009 14:47:27 MDT]]></pubDate>
				<author><![CDATA[Emmanuel Waûters]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[<blockquote class="uncited">
			<div>::1 localhost</div>
		</blockquote><br /> <br /> You hosts file has only the IPv6 address for localhost. Add the IPv4 address to it so that you have:<br /> <br /> <pre>127.0.0.1       localhost
::1             localhost</pre><br /> <br /> Then see if that solves the problem. You should not need to reboot, but it can't hurt.<br /> <br /> <blockquote class="uncited">
			<div>Where I have to fill in either &quot;netstat -ab&quot;</div>
		</blockquote><br /> <br /> From a command prompt.<br /> <br /> <blockquote class="uncited">
			<div>Where I have to fill in either ... or tcpview</div>
		</blockquote><br /> <br /> Let me google that for your: <a class="snap_shots" href="http://www.google.com/search?q=tcpview" target="_blank" rel="nofollow">tcpview</a><br /> <br /> <blockquote class="uncited">
			<div>Where could I find this - and what does it means -: both IPv4 and IPv6 protocols set up for my network connection?? </div>
		</blockquote><br /> <br /> In XP, the network config settings were easy to find. In Vista Microsoft did it's darndest to hide those config setting behind a myriad of dialog boxes, but you can find them by following this trial:<br /> Start Menu &gt; Connect To, then click &quot;Open Network and Sharing Center&quot;, then click &quot;Manage Network Connections&quot; (I keep a shortcut to this on my laptop's desktop). Right click on your network connection and select Properties. You will get a list of features enabled on the network; see if both IPv4 and IPv6 are enabled like in this screenshot:<br /> <br /> <br /> ]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2031002</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2031002</link>
				<pubDate><![CDATA[Sat, Jul 25 2009 10:32:59 MDT]]></pubDate>
				<author><![CDATA[Peter Johnson]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[<br /> Dear Mister,<br /> <br /> <br /> Very much thanks for all the help You offer me. If you can help me to manage and resolve my problem, some belgian specialities are Yours.<br /> <br /> So here is what I got from tcpview:<br /> <br /> Adobe Media Player.exe:2168	TCP	pc_van_emmanuel.telenet.be:51913	192.150.18.118:http	CLOSE_WAIT	<br /> Adobe Media Player.exe:2168	TCP	pc_van_emmanuel.telenet.be:51914	wwis-dubc1-vip60.adobe.com:http	CLOSE_WAIT	<br /> AtService.exe:1024	TCP	PC_van_Emmanuel:5550	PC_van_Emmanuel:0	LISTENING	<br /> AtService.exe:1024	TCP	PC_van_Emmanuel:5550	localhost:49212	ESTABLISHED	<br /> cssauth.exe:3564	TCP	PC_van_Emmanuel:49212	localhost:5550	ESTABLISHED	<br /> fsaua.exe:3656	TCP	PC_van_Emmanuel:12110	PC_van_Emmanuel:0	LISTENING	<br /> fsaua.exe:3656	UDP	PC_van_Emmanuel:12110	*:*		<br /> fsorsp.exe:3672	TCP	pc_van_emmanuel.telenet.be:52028	217.110.97.201:http	CLOSE_WAIT	<br /> fsorsp.exe:3672	UDP	PC_van_Emmanuel:53906	*:*		<br /> iexplore.exe:1368	UDP	PC_van_Emmanuel:56083	*:*		<br /> iexplore.exe:4152	UDP	PC_van_Emmanuel:65290	*:*		<br /> iexplore.exe:8368	UDP	PC_van_Emmanuel:60354	*:*		<br /> jusched.exe:4060	TCP	pc_van_emmanuel.telenet.be:49386	a92-122-217-139.deploy.akamaitechnologies.com:http	CLOSE_WAIT	<br /> lsass.exe:756	TCP	PC_van_Emmanuel:49155	PC_van_Emmanuel:0	LISTENING	<br /> lsass.exe:756	TCPV6	pc_van_emmanuel:49155	pc_van_emmanuel:0	LISTENING	<br /> msnmsgr.exe:2204	TCP	pc_van_emmanuel.telenet.be:51931	by2msg3010809.phx.gbl:msnp	ESTABLISHED	<br /> msnmsgr.exe:2204	TCP	PC_van_Emmanuel:51934	PC_van_Emmanuel:0	LISTENING	<br /> msnmsgr.exe:2204	TCP	PC_van_Emmanuel:51934	localhost:51935	ESTABLISHED	<br /> msnmsgr.exe:2204	TCP	PC_van_Emmanuel:51935	localhost:51934	ESTABLISHED	<br /> msnmsgr.exe:2204	UDP	pc_van_emmanuel.telenet.be:discard	*:*		<br /> msnmsgr.exe:2204	UDP	PC_van_Emmanuel:51395	*:*		<br /> msnmsgr.exe:2204	UDP	PC_van_Emmanuel:60786	*:*		<br /> mysqld.exe:2832	TCP	PC_van_Emmanuel:3306	PC_van_Emmanuel:0	LISTENING	<br /> services.exe:744	TCP	PC_van_Emmanuel:49171	PC_van_Emmanuel:0	LISTENING	<br /> services.exe:744	TCPV6	pc_van_emmanuel:49171	pc_van_emmanuel:0	LISTENING	<br /> sidebar.exe:2892	UDP	PC_van_Emmanuel:55537	*:*		<br /> Skype.exe:3728	UDP	PC_van_Emmanuel:54328	*:*		<br /> sqlbrowser.exe:3052	UDP	PC_van_Emmanuel:ms-sql-m	*:*		<br /> sqlbrowser.exe:3052	UDPV6	pc_van_emmanuel:1434	*:*		<br /> svchost.exe:1060	TCP	PC_van_Emmanuel:epmap	PC_van_Emmanuel:0	LISTENING	<br /> svchost.exe:1060	TCPV6	pc_van_emmanuel:135	pc_van_emmanuel:0	LISTENING	<br /> svchost.exe:1188	TCP	PC_van_Emmanuel:49153	PC_van_Emmanuel:0	LISTENING	<br /> svchost.exe:1188	TCPV6	pc_van_emmanuel:49153	pc_van_emmanuel:0	LISTENING	<br /> svchost.exe:1280	TCP	PC_van_Emmanuel:49154	PC_van_Emmanuel:0	LISTENING	<br /> svchost.exe:1280	UDP	PC_van_Emmanuel:isakmp	*:*		<br /> svchost.exe:1280	UDP	PC_van_Emmanuel:ipsec-msft	*:*		<br /> svchost.exe:1280	TCPV6	pc_van_emmanuel:49154	pc_van_emmanuel:0	LISTENING	<br /> svchost.exe:1280	UDPV6	pc_van_emmanuel:500	*:*		<br /> svchost.exe:1536	UDP	PC_van_Emmanuel:ntp	*:*		<br /> svchost.exe:1536	UDP	PC_van_Emmanuel:ssdp	*:*		<br /> svchost.exe:1536	UDP	pc_van_emmanuel.telenet.be:ssdp	*:*		<br /> svchost.exe:1536	UDP	pc_van_emmanuel.telenet.be:52613	*:*		<br /> svchost.exe:1536	UDP	PC_van_Emmanuel:52614	*:*		<br /> svchost.exe:1536	UDPV6	pc_van_emmanuel:123	*:*		<br /> svchost.exe:1536	UDPV6	[0:0:0:0:0:0:0:1]:1900	*:*		<br /> svchost.exe:1536	UDPV6	[fe80:0:0:0:34d9:d10:ab39:75d]:1900	*:*		<br /> svchost.exe:1536	UDPV6	[fe80:0:0:0:80cd:23f7:de16:d717]:1900	*:*		<br /> svchost.exe:1536	UDPV6	[fe80:0:0:0:fc65:ca48:e9aa:fdf4]:1900	*:*		<br /> svchost.exe:1536	UDPV6	[fe80:0:0:0:fc65:ca48:e9aa:fdf4]:52609	*:*		<br /> svchost.exe:1536	UDPV6	[fe80:0:0:0:80cd:23f7:de16:d717]:52610	*:*		<br /> svchost.exe:1536	UDPV6	[0:0:0:0:0:0:0:1]:52611	*:*		<br /> svchost.exe:1536	UDPV6	[fe80:0:0:0:34d9:d10:ab39:75d]:52612	*:*		<br /> svchost.exe:1644	UDP	PC_van_Emmanuel:llmnr	*:*		<br /> svchost.exe:1644	UDPV6	pc_van_emmanuel:5355	*:*		<br /> System:4	TCP	pc_van_emmanuel.telenet.be:netbios-ssn	PC_van_Emmanuel:0	LISTENING	<br /> System:4	TCP	PC_van_Emmanuel:microsoft-ds	PC_van_Emmanuel:0	LISTENING	<br /> System:4	TCP	PC_van_Emmanuel:5357	PC_van_Emmanuel:0	LISTENING	<br /> System:4	UDP	pc_van_emmanuel.telenet.be:netbios-ns	*:*		<br /> System:4	UDP	pc_van_emmanuel.telenet.be:netbios-dgm	*:*		<br /> System:4	TCPV6	pc_van_emmanuel:445	pc_van_emmanuel:0	LISTENING	<br /> System:4	TCPV6	pc_van_emmanuel:5357	pc_van_emmanuel:0	LISTENING	<br /> tvttcsd.exe:3148	TCP	PC_van_Emmanuel:6060	PC_van_Emmanuel:0	LISTENING	<br /> wininit.exe:700	TCP	PC_van_Emmanuel:49152	PC_van_Emmanuel:0	LISTENING	<br /> wininit.exe:700	TCPV6	pc_van_emmanuel:49152	pc_van_emmanuel:0	LISTENING	<br /> wlcomm.exe:5468	UDP	PC_van_Emmanuel:49864	*:*		<br /> <br /> <br /> IPv6 and IPv4 were both already enabled. But I saw that  if I look to the LAN-connection the networkcable is not connected. Maybe that has something to do with it?]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2031080</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2031080</link>
				<pubDate><![CDATA[Sat, Jul 25 2009 12:56:24 MDT]]></pubDate>
				<author><![CDATA[Emmanuel Waûters]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[Dear Mister, <br /> <br /> <br /> If I stand on the IPv6 and push the button Properties I see that the IP-adress that the IPv6-adress is received automatically and the DNS-serveradress is asseigned automatically too. If I do the same for IPv4 I get as <br /> IP-address 192.168.254.4 and <br /> Subnetmasker 255.255.255.0 and <br /> Standard gateway 192.168.254.254 <br /> <br /> Preference-DNS-server 195.238.2.21<br /> Alternative-DNS-server 195.238.2.22<br /> <br /> Thanks forward,<br /> <br /> Emmanuel]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2031116</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2031116</link>
				<pubDate><![CDATA[Sat, Jul 25 2009 13:47:33 MDT]]></pubDate>
				<author><![CDATA[Emmanuel Waûters]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[Dear Mister, <br /> <br /> <br /> I looked to what you writed about installing the MySQL JDBC driver. I did the same as You did but ping connection didn't succeed in my Eclipse .<br /> <br /> I got:<br /> <br /> Could not connect to BierenLocalHost.<br />   Error creating SQL Model Connection connection to BierenLocalHost. (Error: Communications link failure<br /> <br /> Last packet sent to the server was 0 ms ago.)<br />   Communications link failure<br /> <br /> Last packet sent to the server was 0 ms ago.<br />   Error creating JDBC Connection connection to BierenLocalHost. (Error: Communications link failure<br /> <br /> Last packet sent to the server was 0 ms ago.)<br />   Communications link failure<br /> <br /> Last packet sent to the server was 0 ms ago.<br /> ]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2031126</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2031126</link>
				<pubDate><![CDATA[Sat, Jul 25 2009 14:04:29 MDT]]></pubDate>
				<author><![CDATA[Emmanuel Waûters]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[According to this:<br /> mysqld.exe:2832 TCP PC_van_Emmanuel:3306 PC_van_Emmanuel:0 LISTENING <br /> MySQL has port 3306 open. So I think it is a hostname/IP address issue - the error messages from Eclipse seem to bear this out. (Typically, a <a href="http://www.javaranch.com" class="faq" title="A Friendly Place for Java Greenhorns" target="_new">Java</a> client will connect to a host with the name or IP address you give it, the host will reply with its hostname, and then the client will use that hostname for further communication. If the hostname returned is mapped to no IP address or has the wrong IP address, then things just don't work. Note that this is a quirk of some Java clients, and thus could explain when a Java app cannot connect to the database, by the MySQL Admin can connect.)<br /> <br /> What is the IP address of BierenLocalHost?<br /> <br /> What do you get if you enter "ipconfig /all" on the commandl ine?<br /> <br /> Did you update the hosts file like I asked?]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2031182</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2031182</link>
				<pubDate><![CDATA[Sat, Jul 25 2009 22:06:48 MDT]]></pubDate>
				<author><![CDATA[Peter Johnson]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[Dear Mister,  <br /> <br /> <br /> <br /> Could I send the answers on Your questions by mail. I've made some screenshots and don't know how to post them here. I think maybe we've find the fault. The localhost of the database isn't 3306, it's another port . I think maybe it's that. I would like to send You all this screenshots.<br /> <br /> <br /> <br /> Thanks very, very, very much.<br /> <br /> <br /> Emmanuel. ]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2031448</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2031448</link>
				<pubDate><![CDATA[Sun, Jul 26 2009 14:47:25 MDT]]></pubDate>
				<author><![CDATA[Emmanuel Waûters]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[Dear Mister,  <br /> <br /> <br /> <br /> Could I send the answers on Your questions by mail. I've made some screenshots and don't know how to post them here. I think maybe we've find the fault. The localhost of the database isn't 3306, it's another port . I think maybe it's that. I would like to send You all this screenshots.<br /> <br /> <br /> <br /> Thanks very, very, very much.<br /> <br /> <br /> Emmanuel. ]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2031449</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2031449</link>
				<pubDate><![CDATA[Sun, Jul 26 2009 14:47:39 MDT]]></pubDate>
				<author><![CDATA[Emmanuel Waûters]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[Dear Mister,  <br /> <br /> <br /> <br /> Could I send the answers on Your questions by mail. I've made some screenshots and don't know how to post them here. I think maybe we've find the fault. The localhost of the database isn't 3306, it's another port . I think maybe it's that. I would like to send You all this screenshots.<br /> <br /> <br /> <br /> Thanks very, very, very much.<br /> <br /> <br /> Emmanuel. ]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2031452</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2031452</link>
				<pubDate><![CDATA[Sun, Jul 26 2009 14:53:29 MDT]]></pubDate>
				<author><![CDATA[Emmanuel Waûters]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[Dear Mister,<br /> <br /> my emailadress is wauters underscore emmanuel at hotmail dot com All without spaces.<br /> <br /> <br /> Thanks,<br /> <br /> <br /> Emmanuel]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2031460</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2031460</link>
				<pubDate><![CDATA[Sun, Jul 26 2009 15:29:36 MDT]]></pubDate>
				<author><![CDATA[Emmanuel Waûters]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[<blockquote class="uncited">
			<div>Could I send the answers on Your questions by mail.</div>
		</blockquote><br /> <a class="snap_shots" href="http://faq.javaranch.com/java/UseTheForumNotEmail" target="_blank" rel="nofollow">http://faq.javaranch.com/java/UseTheForumNotEmail</a><br /> Besides, I cannot answer direct email unless you have a support contract with my company, and even then you have to go through proper channels.<br /> <br /> <blockquote class="uncited">
			<div> I've made some screenshots and don't know how to post them here.</div>
		</blockquote><br /> Have you seen the Attachments tab underneath the editor window?<br /> <br /> <blockquote class="uncited">
			<div>The localhost of the database isn't 3306, it's another port .</div>
		</blockquote><br /> Huh? Did you mean "The port of...'' Or do you mean that the database is not listening on localhost but rather on your PC's hostname, which I think is PC_van_Emmanuel? There is no need to send screen shots for this. In TCPView you can save the info to a text file (please post only the mysqld line!). And netstat output is also textual.<br /> <br /> If mysqld is really attached to PC_van_Emmanuel:3306, then just change your *-ds.xml file to reflect this.]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2032059</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2032059</link>
				<pubDate><![CDATA[Mon, Jul 27 2009 10:21:23 MDT]]></pubDate>
				<author><![CDATA[Peter Johnson]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[Dear Mister,<br /> <br /> My excuses for asking You to mail. I'm very new to this forum, more, I'm very new into the ICT-business and programming. I just started a very intensive course end of april last, but I'm loving it.The harder it is, the more I like it. <br /> <br />  I've hosted the screenshots on Picasa Web Albums. This is the link: <a class="snap_shots" href="http://picasaweb.google.com/francoisedewinter/EclipseGanymede#" target="_new" rel="nofollow">Screenshots PC</a><br /> I will type here the text of my mail with the reference  to the screenshots in between.<br /> <br /> Screenshot1<br /> Screenshot2<br /> <br /> <br /> Here are some IP-addresses communicated to my by the system. In the left menu You find the button “Catalogs” where my databases are – so too bierendb-. But I don't know how to find out which IP-address  bierendb has.<br /> <br /> <br /> <br /> In Database i've found nothing filled in.<br /> <br /> <br /> Screenshot3<br /> Screenshot4<br /> <br /> <br /> Adapter for wireless LAN Wireless networkconnection<br /> MediumStatus.......................................:medium disconnected<br /> Connectionspecification. DNS-postfix: telenet.be<br /> <br /> Ethernet-adapter LAN-connection:<br /> Mediumstatus..........................: medium disconnected<br /> Connectionspecification. DNS-postfix:<br /> <br /> Tunnel-adapter LAN-connection*7:<br /> Mediumstatus..........................: medium disconnected<br /> Connectionspecification. DNS-postfix:<br /> <br /> That's what I get by typing ipconfig. But can't type ipconfig /all. In the map System32 of Windows I only get ipconfig.<br /> <br /> Screenshot5<br /> Screenshot6<br /> <br /> I think here You see the the localhost of bierendb is not 3306. I don't find where the IP-address is. Don't know how to find it. So I think that is the problem. How can I change that?<br /> <br /> <br /> I found both Ipv4 and Ipv6 enabled but how I have to add Ipv4 address for localhost or how i have top update hosts file don't know how to do it. <br /> <br /> <br /> So that is what I found out. If You need more information, ask me. I will try to get it. Please be awre I'm new, so sometimes I need a guide to find this information out. <br /> <br /> Another time much thanks for willing to help me so much.<br /> <br /> I'm always willing to do a favour to You also and will not forget my promesse when we resolve my problem. <br /> <br /> Thanks forward.<br /> <br /> <br /> <br /> <br /> Emmanuel Waûters]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2032200</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2032200</link>
				<pubDate><![CDATA[Mon, Jul 27 2009 14:05:00 MDT]]></pubDate>
				<author><![CDATA[Emmanuel Waûters]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[Hallo Mister Johnson,<br /> <br /> <br /> Did my information helped to solve the problem?<br /> <br /> <br /> Thanks forward.<br /> <br /> <br /> Emmanuel]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2034219</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2034219</link>
				<pubDate><![CDATA[Wed, Jul 29 2009 15:13:57 MDT]]></pubDate>
				<author><![CDATA[Emmanuel Waûters]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[I looked at the photos and it does look like MySQL is binding to localhost:3306. But I don't like the response from ipconfig - where are the IP addresses? Is your system plugged into the network? Also, you should be able to type 'ipconfig /all', the '/all' is simply an option to ipconfig.<br /> <br /> I double-checked the version of the JDBC driver. The latest is mysql-connector-java-5.1.8-bin.jar. You might try downloading and using that one.]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2034295</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2034295</link>
				<pubDate><![CDATA[Wed, Jul 29 2009 18:21:43 MDT]]></pubDate>
				<author><![CDATA[Peter Johnson]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[Dear Mr. Johnson,<br /> <br /> <br /> I downloaded the last version of the driver- so a driver that is diiferent of the former driver-.And again I got the same notifications as before.<br /> <br /> In green are the links or buttons I clicked on.<br /> In red is the text I wrote in the blank spaces.<br /> In black, italic the text I get : the menu, problemnotifications,....<br /> <br /> <font color='green'><a href="http://www.javaranch.com" class="faq" title="A Friendly Place for Java Greenhorns" target="_new">Java</a> EE</font><br /> <br /> <font color='green'>Data Source Explorer</font><br /> <br />  I marked “Database Connections” and open with the right mousekey the menu and clicked on “<font color='green'>New</font>”<br />  Connection Profile<br /> Create a DB2 for Linux, UNIX, and Windows connection profile.<br /> Connection Profile Types:<br /> <font color='green'>MySQL</font><br /> Name: ( Where I put in the next line)<br /> <font color='red'>BeersLocalHost</font><br /> <font color='green'>Next&gt;'</font><br /> <br /> Specify a Driver and Connection Details<br /> Select a driver from the drop-down and provide login details for the connection.<br /> Drivers: MySQL JDBC Driver  <font color='green'>[+]</font> (I clicked on this button “New Driver Definition”)<br /> <br /> Specify a Driver Template and Definition Name<br /> Name/Type <br /> <font color='green'>MySQL JDBC Driver MySQL  5.1  </font>            	<br /> First I get this answer:<br /> <i>Unable to locate JAR/zip in file system as specified by the driver definition: mysql-connector-java-5.1.0-bin.jar.</i>      <br /> <font color='green'>Jar List</font>  <br /> I remove <i>mysql-connector-java-5.1.0.-bin.jar</i> and loose notification:	<br /> <i>Unable to locate JAR/zip in file system as specified by the driver definition: mysql-connector-java-5.1.0-bin.jar.</i>	<br /> When I then want to install the driver “C:\Users\Emmanuel\Contacts\Documents\Programma's\mysql-connector-java-5.1.8\mysql-connector-java-5.1.8\mysql-connector-java-5.1.8-bin.jar” I get :<br /> <i>A driver already exists with that name. Please provide a unique driver name</i><br /> I can't push then the button “ok”, but just can push the button “cancel”. <br /> If I trie again and this time I do the following steps:<br /> <br /> Specify a Driver and Connection Details<br /> Select a driver from the drop-down and provide login details for the connection.<br /> Drivers: MySQL JDBC Driver <font color='green'>[+]</font> (I clicked on this button “New Driver Definition”)<br /> <br /> Specify a Driver Template and Definition Name<br /> Name/Type <br /> <font color='green'>MySQL JDBC Driver MySQL  5.1  </font>                	<br /> <br /> First I get this answer:<br /> <i>Unable to locate JAR/zip in file system as specified by the driver definition: mysql-connector-java-5.1.0-bin.jar. </i>     <br /> <font color='green'>Jar List</font>  <br /> I let the file “mysql-connector-java-5.1.0.-bin.jar “ as it is and add the next file <br /> “C:\Users\Emmanuel\Contacts\Documents\Programma's\mysql-connector-java-5.1.8\mysql-connector-java-5.1.8\mysql-connector-java-5.1.8-bin.jar” to and  I get following notification :<br /> <i>A driver already exists with that name. Please provide a unique driver name.</i><br /> So in both cases  I get as answer – even if the driver is in the list - their isn't a driver available and when I want to remove the driver and/or add a new driver to it I get as answer the driver already exists.<br /> <br /> <br /> When I typed the commando ipconfig /all,  I get the folowing <a class="snap_shots" href="http://picasaweb.google.com/francoisedewinter/EclipseGanymede#" target="_new" rel="nofollow">response</a>.<br /> <br /> Please look at the screenshots 7,8,9.<br /> <br /> <br /> <br /> Thanks forward.<br /> <br /> <br /> Emmanuel Waûters]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2035176</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2035176</link>
				<pubDate><![CDATA[Thu, Jul 30 2009 18:34:22 MDT]]></pubDate>
				<author><![CDATA[Emmanuel Waûters]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[Please ignore Eclipse for now. I want to first make sure that you can run the <a href="http://www.javaranch.com" class="faq" title="A Friendly Place for Java Greenhorns" target="_new">Java</a> app you posted on July 22. If that app will not run then anything we attempt to do in Eclipse will be futile.<br /> <br /> So here is what I want you to do. Run the Java client from July 22 from a command line and tell me if that works. Don't forget to include the MySQL JDBC JAR file in your classpath. ]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2035603</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2035603</link>
				<pubDate><![CDATA[Fri, Jul 31 2009 09:52:42 MDT]]></pubDate>
				<author><![CDATA[Peter Johnson]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[Hallo,<br /> <br /> I've retyped the javafile of 22th of july in notepad and want it now to run. Do I have to fill in somewhere in that file the absolute adress of the MySQL JDBC JAR file ?<br /> How would the commando looks like that I have to use in the command line, where is the MySQL JDBC JAR file included? I would save the jarfile in the same map as my java-file, so with the classpath it will be both compiled. <br /> If I have to do more difficult things. I can ask other students next monday, buth not for resolving this JDBC problem. I already asked them and the theacher also. But they can help me providing You the exact information you requested me.<br /> <br /> Thanks forward.<br /> <br /> <br /> Emmanuel]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2036192</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2036192</link>
				<pubDate><![CDATA[Sat, Aug 1 2009 16:14:07 MDT]]></pubDate>
				<author><![CDATA[Emmanuel Waûters]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[Do not use notepad!!!! It does strange things that, unless you are aware of them, will cause you more problems. If you need a basic text editor, download and install Notepad++.<br /> <br /> Why did you retype the client code? Why did you not just use the one created by Eclipse? What I was trying to get you to do was not fiddle around with the database connection within Eclipse or even run the app within Eclipse.<br /> <br /> Also, are you saying that you are learning <a href="http://www.javaranch.com" class="faq" title="A Friendly Place for Java Greenhorns" target="_new">Java</a> by working entirely in the Eclipse environment? I would not do it that way. I would make you use a simple text editor (like Notepad++) to write your code (and configuration files) and use the command line to compile, package and run your apps. Until you could do that with your eyes closed, and you learned about Ant and Maven for building and packaging, I would not let you near an IDE. I suggest that you google for some basic Java tutorials. Here's one from Sun: <a class="snap_shots" href="http://java.sun.com/docs/books/tutorial/getStarted/cupojava/win32.html" target="_blank" rel="nofollow">http://java.sun.com/docs/books/tutorial/getStarted/cupojava/win32.html</a>]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2036394</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2036394</link>
				<pubDate><![CDATA[Sun, Aug 2 2009 09:22:09 MDT]]></pubDate>
				<author><![CDATA[Peter Johnson]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[After you look at that tutorial, try compiling and running your client app from the command line. If you run into problems, post the full path name for your client's .java source file, the working directory for your command line, the command entered, and the error. Simply copy and paste that info from the command line window to the forum.]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2036518</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2036518</link>
				<pubDate><![CDATA[Sun, Aug 2 2009 17:01:31 MDT]]></pubDate>
				<author><![CDATA[Peter Johnson]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[Dear Mister,<br /> <br /> <br /> So I followed Your instructions. I've typed the following text in notepad++  :<br /> import <a href="http://java.sun.com/javase/6/docs/api/java/sql/Connection.html" class="api" title="Java API" target="_new" rel="nofollow">java.sql.Connection</a>; <br /> import <a href="http://java.sun.com/javase/6/docs/api/java/sql/DriverManager.html" class="api" title="Java API" target="_new" rel="nofollow">java.sql.DriverManager</a>; <br /> import <a href="http://java.sun.com/javase/6/docs/api/java/sql/SQLException.html" class="api" title="Java API" target="_new" rel="nofollow">java.sql.SQLException</a>; <br /> <br /> public class ConnectDB { <br /> 	public static void main(String[] args) { <br /> 		try { <br /> 			Class.forName("com.mysql.jdbc.Driver"); <br /> 			Connection con = <a href="http://java.sun.com/javase/6/docs/api/java/sql/DriverManager.html" class="api" title="Java API" target="_new" rel="nofollow">DriverManager</a>. <br /> 			getConnection("jdbc:mysql://localhost/bierendb","root", ""); <br /> 			System.out.println("Connection OK"); <br /> 			con.close(); <br /> 		} catch (<a href="http://java.sun.com/javase/6/docs/api/java/lang/ClassNotFoundException.html" class="api" title="Java API" target="_new" rel="nofollow">ClassNotFoundException</a> e) { <br /> 			System.out.println("JDBC driver not found"); <br /> 		} catch (<a href="http://java.sun.com/javase/6/docs/api/java/sql/SQLException.html" class="api" title="Java API" target="_new" rel="nofollow">SQLException</a> e) { <br /> 			System.out.println("SQL problem"); <br /> 			System.out.println(e.getMessage()); <br /> 			e.printStackTrace(); <br /> 		} <br /> 	}	 <br /> }<br /> <br /> I saved the file as C:\Users\Emmanuel\Contacts\Documents\Informatica\Java\SCJP-oefeningen\src\ConnectDB.java .<br /> I copied the file     mysql-connector-java-5.1.7-bin.jar                into this map  <br /> C:\Users\Emmanuel\Contacts\Documents\Informatica\Java\SCJP-oefeningen\src <br /> <br /> and into this map :<br /> C:\Users\Emmanuel\Contacts\Documents\Informatica\Java\SCJP-oefeningen\build<br /> <br />  and <a class="snap_shots" href="http://picasaweb.google.com/francoisedewinter/EclipseGanymede#5365698929652100450" target="_new" rel="nofollow">that</a> is what I got when I compiled and runned the program.<br /> <br /> <br /> <br /> <br /> Thanks forward.<br /> <br /> <br /> <br /> Emmanuel]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2036882</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2036882</link>
				<pubDate><![CDATA[Mon, Aug 3 2009 05:45:50 MDT]]></pubDate>
				<author><![CDATA[Emmanuel Waûters]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[Why couldn't you copy and paste the text from the command prompt window to the forum like I asked you? Then I could easily quote the things you did wrong and show you how to correct them.<br /> <br /> Of the 4 javac command you ran, only one worked. Guess what - the one that worked is the correct one (I'd quote it for you but I am not about to retype the text...)<br /> <br /> You tried only one <a href="http://www.javaranch.com" class="faq" title="A Friendly Place for Java Greenhorns" target="_new">java</a> command. The error is because you did not include the JDBC JAR file in the classpath:<br /> <br /> java -cp build;build/mysql-connector-java-5.1.7-bin.jar ConnectDB<br /> <br /> Notice that when you specify a directory in the classpath that the JVM will search only for class files - it does not search for JAR files. If you want to include a JAR file you have to name it in the classpath. This is a 'quirk' that has confused many and rumor has it that a future version of the JVM will rectify this.<br /> <br /> ]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2037066</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2037066</link>
				<pubDate><![CDATA[Mon, Aug 3 2009 09:54:14 MDT]]></pubDate>
				<author><![CDATA[Peter Johnson]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[Hallo,<br /> <br /> I found out how to copy – can only copy everything or nothing - text from the command line. So I typed again the commando's You suggested and got this:<br /> <br /> <br /> Microsoft Windows [versie 6.0.6001]<br /> Copyright (c) 2006 Microsoft Corporation. Alle rechten voorbehouden.<br /> <br /> <br /> C:\Users\Emmanuel\Contacts\Documents\Informatica\Java\SCJP-oefeningen&gt;javac -d b<br /> uild src/ConnectDB.java<br /> <br /> C:\Users\Emmanuel\Contacts\Documents\Informatica\Java\SCJP-oefeningen&gt;<a href="http://www.javaranch.com" class="faq" title="A Friendly Place for Java Greenhorns" target="_new">java</a> -cp b<br /> uild;build/mysql-connector-java-5.1.7-bin.jar ConnectDB<br /> JDBC driver not found<br /> <br /> C:\Users\Emmanuel\Contacts\Documents\Informatica\Java\SCJP-oefeningen&gt;java -cp b<br /> uild;build/mysql-connector-java-5.1.7-bin.jar ConnectDB<br /> JDBC driver not found<br /> <br /> C:\Users\Emmanuel\Contacts\Documents\Informatica\Java\SCJP-oefeningen&gt;<br /> <br /> I compared today everything to another student: I compared what he writes, markes, fills in, chooses in  MySQL and Eclipse. I've done the same things. We've looked to everything: every map, file and we've got the same. But always I can't get connected with the database.<br /> And now when I see what I've got – JDBC driver not found - from the command line – after compiled and run the little application – and know I've copied the jar-file to the src- and the builddirectory and even copied it to the parentdirectory of both, I start to think my computer or some system on my computer can't read the jar-file, can't acces it. It exists but the application don't find it. I've worked once in the system- and the environement-variables, I hope it has not got any implications.<br /> <br /> <br /> Thanks forward.<br /> <br /> <br /> <br /> Emmanuel Waûters]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2037184</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2037184</link>
				<pubDate><![CDATA[Mon, Aug 3 2009 14:12:12 MDT]]></pubDate>
				<author><![CDATA[Emmanuel Waûters]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[Hallo,<br /> <br /> <br /> It seems to have something to do with my system Window Vista Business.<br /> <a class="snap_shots" href="http://forums.mysql.com/read.php?39,256229,256229" target="_new" rel="nofollow">Here</a> is the link where is a similar problem.  This persons system worked fine , until an update of windows: "Probably after an update of Windows Defender in Windows Vista the JDBC connection to MySQL has given up working, even for applications that have always worked until now."<br /> <br /> So it has something to do with windows.<br /> <br /> Thanks,<br /> <br /> <br /> Emmanuel]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2037470</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2037470</link>
				<pubDate><![CDATA[Tue, Aug 4 2009 01:05:48 MDT]]></pubDate>
				<author><![CDATA[Emmanuel Waûters]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[I would agree that Windows Defender could be an issue, except that you can get the MySQL Admin GUI to connect. So getting connected is possible.<br /> <br /> Let's look at this command and its result:<br /> <br /> <pre>C:\Users\Emmanuel\Contacts\Documents\Informatica\Java\SCJP-oefeningen&gt;java -cp b
uild;build/mysql-connector-java-5.1.7-bin.jar ConnectDB
JDBC driver not found</pre><br /> <br /> In an earlier post you stated:<br /> <br /> <blockquote class="uncited">
			<div>I copied the file mysql-connector-java-5.1.7-bin.jar into this map<br /> C:\Users\Emmanuel\Contacts\Documents\Informatica\Java\SCJP-oefeningen\src<br /> <br /> and into this map :<br /> C:\Users\Emmanuel\Contacts\Documents\Informatica\Java\SCJP-oefeningen\build</div>
		</blockquote><br /> <br /> Is the mysql-connector-java-5.1.7-bin.jar file in the build directory? Try running this from the command prompt, and paste the reply:<br /> <br /> <pre>dir build</pre><br /> <br /> One more thing. Add a printStackTrace call to the CNFE:<br /> <br /> <pre>} catch (ClassNotFoundException e) {
System.out.println(&quot;JDBC driver not found&quot;);
  e.printStackTrace();</pre><br /> <br /> By the way, it is not true that you have to copy and paste the whole command prompt window contents. You can select the text to copy with the mouse and then either right-click (if you have Quick Edit Mode set) or go to the system menu and select Edit &gt; Copy.]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2037825</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2037825</link>
				<pubDate><![CDATA[Tue, Aug 4 2009 12:18:16 MDT]]></pubDate>
				<author><![CDATA[Peter Johnson]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[Hallo,<br /> <br /> I made an mistake before. The jar-file wasn't included in the build directory. Now it is and I've included e.printStackTrace() in the java-file as demanded.<br /> So that is what I got:<br /> <br /> C:\Users\Emmanuel\Contacts\Documents\Informatica\Java\SCJP-oefeningen&gt;javac -d b<br /> uild src/ConnectDB.java<br /> <br /> C:\Users\Emmanuel\Contacts\Documents\Informatica\Java\SCJP-oefeningen&gt;<a href="http://www.javaranch.com" class="faq" title="A Friendly Place for Java Greenhorns" target="_new">java</a> -cp b<br /> uild;build/mysql-connector-java-5.1.7-bin.jar ConnectDB<br /> SQL problem<br /> Communications link failure<br /> <br /> Last packet sent to the server was 0 ms ago.<br /> com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link fai<br /> lure<br /> <br /> Last packet sent to the server was 0 ms ago.<br />         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)<br /> <br />         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct<br /> orAccessorImpl.java:39)<br />         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingC<br /> onstructorAccessorImpl.java:27)<br />         at java.lang.reflect.Constructor.newInstance(Constructor.java:513)<br />         at com.mysql.jdbc.Util.handleNewInstance(Util.java:406)<br />         at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1<br /> 074)<br />         at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2120)<br />         at com.mysql.jdbc.ConnectionImpl.&lt;init&gt;(ConnectionImpl.java:723)<br />         at com.mysql.jdbc.JDBC4Connection.&lt;init&gt;(JDBC4Connection.java:46)<br />         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)<br /> <br />         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct<br /> orAccessorImpl.java:39)<br />         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingC<br /> onstructorAccessorImpl.java:27)<br />         at java.lang.reflect.Constructor.newInstance(Constructor.java:513)<br />         at com.mysql.jdbc.Util.handleNewInstance(Util.java:406)<br />         at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:302)<br />         at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java<br /> :282)<br />         at java.sql.DriverManager.getConnection(DriverManager.java:582)<br />         at java.sql.DriverManager.getConnection(DriverManager.java:185)<br />         at ConnectDB.main(ConnectDB.java:9)<br /> Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communicatio<br /> ns link failure<br /> <br /> Last packet sent to the server was 0 ms ago.<br />         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)<br /> <br />         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct<br /> orAccessorImpl.java:39)<br />         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingC<br /> onstructorAccessorImpl.java:27)<br />         at java.lang.reflect.Constructor.newInstance(Constructor.java:513)<br />         at com.mysql.jdbc.Util.handleNewInstance(Util.java:406)<br />         at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1<br /> 074)<br />         at com.mysql.jdbc.MysqlIO.&lt;init&gt;(MysqlIO.java:335)<br />         at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2043)<br />         ... 12 more<br /> Caused by: <a href="http://java.sun.com/javase/6/docs/api/java/net/ConnectException.html" class="api" title="Java API" target="_new" rel="nofollow">java.net.ConnectException</a>: Connection refused: connect<br />         at java.net.PlainSocketImpl.socketConnect(Native Method)<br />         at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)<br />         at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)<br />         at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)<br />         at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)<br />         at java.net.Socket.connect(Socket.java:519)<br />         at java.net.Socket.connect(Socket.java:469)<br />         at <a href="http://java.sun.com/javase/6/docs/api/java/net/Socket.html" class="api" title="Java API" target="_new" rel="nofollow">java.net.Socket</a>.&lt;init&gt;(Socket.java:366)<br />         at <a href="http://java.sun.com/javase/6/docs/api/java/net/Socket.html" class="api" title="Java API" target="_new" rel="nofollow">java.net.Socket</a>.&lt;init&gt;(Socket.java:209)<br />         at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.ja<br /> va:253)<br />         at com.mysql.jdbc.MysqlIO.&lt;init&gt;(MysqlIO.java:284)<br />         ... 13 more<br /> <br /> C:\Users\Emmanuel\Contacts\Documents\Informatica\Java\SCJP-oefeningen&gt;<br /> <br /> <br /> Thanks forward,<br /> <br /> <br /> Emmanuel]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2038024</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2038024</link>
				<pubDate><![CDATA[Tue, Aug 4 2009 18:02:04 MDT]]></pubDate>
				<author><![CDATA[Emmanuel Waûters]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[Try one more thing. Change the connection URL to:<br /> <br /> getConnection("jdbc:mysql://localhost:3306/bierendb","root", "");<br /> <br /> Also, what is the 'root' password for MySQL? Did you really leave it blank? If not, provide the password also:<br /> <br /> getConnection("jdbc:mysql://localhost:3306/bierendb","root", "thepassword");<br /> ]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2038556</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2038556</link>
				<pubDate><![CDATA[Wed, Aug 5 2009 09:32:31 MDT]]></pubDate>
				<author><![CDATA[Peter Johnson]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[Hallo,<br /> <br /> <br /> I've again followed Your instructions. Yesterday before I've removed and reinstalled MySQL, so the MySQL JDBC driver and the version of MySQL matched those of my fellow student who's program worked. So I needed to change the password. I've included in the commandline as You asked.<br /> Please see here what I got:<br /> <br /> <pre>import java.sql.Connection; 
import java.sql.DriverManager; 
import java.sql.SQLException; 

public class ConnectDB { 
	public static void main(String[] args) { 
		try { 
			Class.forName(&quot;com.mysql.jdbc.Driver&quot;); 
			Connection con = DriverManager. 
			getConnection(&quot;jdbc:mysql://localhost/bierendb&quot;,&quot;root&quot;, &quot;majorelle&quot;); 
			System.out.println(&quot;Connection OK&quot;); 
			con.close(); 
		} catch (ClassNotFoundException e) { 
			System.out.println(&quot;JDBC driver not found&quot;); 
			e.printStackTrace();
		} catch (SQLException e) { 
			System.out.println(&quot;SQL problem&quot;); 
			System.out.println(e.getMessage()); 
			e.printStackTrace(); 
		} 
	}	 
}</pre><br /> <br /> <br /> C:\Users\Emmanuel\Contacts\Documents\Informatica\Java\SCJP-oefeningen&gt;javac -d b<br /> uild src/ConnectDB.java<br /> <br /> C:\Users\Emmanuel\Contacts\Documents\Informatica\Java\SCJP-oefeningen&gt;<a href="http://www.javaranch.com" class="faq" title="A Friendly Place for Java Greenhorns" target="_new">java</a> -cp b<br /> uild;build/mysql-connector-java-5.1.7-bin.jar ConnectDB<br /> SQL problem<br /> Communications link failure<br /> <br /> Last packet sent to the server was 0 ms ago.<br /> com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link fai<br /> lure<br /> <br /> Last packet sent to the server was 0 ms ago.<br />         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)<br /> <br />         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct<br /> orAccessorImpl.java:39)<br />         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingC<br /> onstructorAccessorImpl.java:27)<br />         at java.lang.reflect.Constructor.newInstance(Constructor.java:513)<br />         at com.mysql.jdbc.Util.handleNewInstance(Util.java:406)<br />         at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1<br /> 074)<br />         at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2120)<br />         at com.mysql.jdbc.ConnectionImpl.&lt;init&gt;(ConnectionImpl.java:723)<br />         at com.mysql.jdbc.JDBC4Connection.&lt;init&gt;(JDBC4Connection.java:46)<br />         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)<br /> <br />         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct<br /> orAccessorImpl.java:39)<br />         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingC<br /> onstructorAccessorImpl.java:27)<br />         at java.lang.reflect.Constructor.newInstance(Constructor.java:513)<br />         at com.mysql.jdbc.Util.handleNewInstance(Util.java:406)<br />         at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:302)<br />         at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java<br /> :282)<br />         at java.sql.DriverManager.getConnection(DriverManager.java:582)<br />         at java.sql.DriverManager.getConnection(DriverManager.java:185)<br />         at ConnectDB.main(ConnectDB.java:9)<br /> Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communicatio<br /> ns link failure<br /> <br /> Last packet sent to the server was 0 ms ago.<br />         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)<br /> <br />         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct<br /> orAccessorImpl.java:39)<br />         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingC<br /> onstructorAccessorImpl.java:27)<br />         at java.lang.reflect.Constructor.newInstance(Constructor.java:513)<br />         at com.mysql.jdbc.Util.handleNewInstance(Util.java:406)<br />         at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1<br /> 074)<br />         at com.mysql.jdbc.MysqlIO.&lt;init&gt;(MysqlIO.java:335)<br />         at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2043)<br />         ... 12 more<br /> Caused by: <a href="http://java.sun.com/javase/6/docs/api/java/net/ConnectException.html" class="api" title="Java API" target="_new" rel="nofollow">java.net.ConnectException</a>: Connection refused: connect<br />         at java.net.PlainSocketImpl.socketConnect(Native Method)<br />         at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)<br />         at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)<br />         at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)<br />         at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)<br />         at java.net.Socket.connect(Socket.java:519)<br />         at java.net.Socket.connect(Socket.java:469)<br />         at <a href="http://java.sun.com/javase/6/docs/api/java/net/Socket.html" class="api" title="Java API" target="_new" rel="nofollow">java.net.Socket</a>.&lt;init&gt;(Socket.java:366)<br />         at <a href="http://java.sun.com/javase/6/docs/api/java/net/Socket.html" class="api" title="Java API" target="_new" rel="nofollow">java.net.Socket</a>.&lt;init&gt;(Socket.java:209)<br />         at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.ja<br /> va:253)<br />         at com.mysql.jdbc.MysqlIO.&lt;init&gt;(MysqlIO.java:284)<br />         ... 13 more<br /> <br /> C:\Users\Emmanuel\Contacts\Documents\Informatica\Java\SCJP-oefeningen&gt;<br /> <br /> Thanks forward.<br /> <br /> <br /> Emmanuel]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2038667</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2038667</link>
				<pubDate><![CDATA[Wed, Aug 5 2009 12:38:37 MDT]]></pubDate>
				<author><![CDATA[Emmanuel Waûters]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[You forgot to add the port number (3306) to the connection URL.<br /> <br /> Looks like others are having a similar problem: <a class="snap_shots" href="http://forums.mysql.com/read.php?39,191966,191966#msg-191966" target="_new" rel="nofollow">http://forums.mysql.com/read.php?39,191966,191966#msg-191966</a><br /> <br /> Try this: get the MySQL driver from the Maven repository and use it (instead of the one you are using). The URL is:<br /> <a class="snap_shots" href="http://repo1.maven.org/maven2/mysql/mysql-connector-java/5.1.6/mysql-connector-java-5.1.6.jar" target="_blank" rel="nofollow">http://repo1.maven.org/maven2/mysql/mysql-connector-java/5.1.6/mysql-connector-java-5.1.6.jar</a>]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2039420</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2039420</link>
				<pubDate><![CDATA[Thu, Aug 6 2009 11:02:56 MDT]]></pubDate>
				<author><![CDATA[Peter Johnson]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[Dear Mister Johnson,<br /> <br /> <br /> <br /> <br /> Thousand times thanks for You persistent help. The problem is solved and I will post the solution here. You had the solution. I didn't understand it well – so I looked over it-. My excuses for it, but I'm a really greenhorn in much things of computers. I have to say You already had it right at the beginning. <br /> <br /> <br /> So the problem was, that due to some circumstances – some people say an update of Windows Vista-  the system didn't recognize anymore the relative variable localhost. So using the relative address localhost in my <a href="http://www.javaranch.com" class="faq" title="A Friendly Place for Java Greenhorns" target="_new">java</a> application or using this address in adding a database  to Eclipse, didn't work. So Mr Gert Cuppens –<a class="snap_shots" href="http://www.gertcuppens.org/" target="_new" rel="nofollow">here</a> is the link to his personal website with all matters on the subject Java and related subjects – suggested me to put the absolute address into the java application – the IP-address 127.0.0.1 instead of localhost – , so the application will work. What it did. <br /> <br /> And here it comes where You solved the problem. If You add or better said write - because when You open the file with notepad for example You can write into this document - 127.0.0.1  localhost into the file hosts of the directory C:\Windows\System32\drivers\etc You can go on using localhost as an relative address in Your applications. So You don't have to fill anymore the absolute – IP – address – what reduce faults – in Your applications..<br /> <br /> <br /> I want to express another time my gratefullness for all the help You provided me. I owe You a big, big, big favour. So I want to offer You something to show my thankfullness for Your persistent help. <br /> My e-mailaddress is wauters underscore emmanuel at hotmail dot com, all in one line. So could you<br /> give me an address  where I can send the present to. <br /> <br /> <br /> <br /> Yours sincerely,<br /> <br /> <br /> <br /> Emmanuel Waûters]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2043115</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2043115</link>
				<pubDate><![CDATA[Wed, Aug 12 2009 13:18:57 MDT]]></pubDate>
				<author><![CDATA[Emmanuel Waûters]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[I have to admit that it is frustrating when I ask someone to change something (update the etc/hosts file), and later ask them if they have done that, only to find that they ignored my suggestion when that suggestion would have solved their problem. Sigh. (I'd put the head-banging icon here but I can't stand icons that move...)]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2044056</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2044056</link>
				<pubDate><![CDATA[Thu, Aug 13 2009 15:05:04 MDT]]></pubDate>
				<author><![CDATA[Peter Johnson]]></author>
			</item>
			<item>
				<title>Removing Eclipse Ganymede</title>
				<description><![CDATA[Dear Mister Johnson,<br /> <br /> <br /> The problem is that some suggestions I didn't understood well or presumed to have understood. But I will never forget it anymore.<br /> I have to say, by following Your instructions, I understand more about my operating system, the maps on my computer,....<br /> <br /> Always willing to return a favour.<br /> <br /> <br /> Yours sincerely,<br /> <br /> <br /> Emmanuel Waûters]]></description>
				<guid isPermaLink="true">http://www.coderanch.com/forums/posts/preList/455142/2044070</guid>
				<link>http://www.coderanch.com/forums/posts/preList/455142/2044070</link>
				<pubDate><![CDATA[Thu, Aug 13 2009 15:28:13 MDT]]></pubDate>
				<author><![CDATA[Emmanuel Waûters]]></author>
			</item>
	</channel>
</rss>
