I have probrably read every single post regarding this issue. I've followed every single suggestion but it still doesnt work for me. Can someone please help me figure out why I keep getting the error message: Exception in thread "main" java.lang.NoClassDefFoundError: MakingTheConnection When I run javac MakingTheConnection.java it compiles it without a problem. As soon as I type java MakingTheConnection then the exception error pops up. Here is the code: import java.sql.*; public class MakingTheConnection { public static void main(String[] args) {
System.out.println("Connection established successfully!");
databaseConnection.close(); } catch (ClassNotFoundException cnfe) { System.err.println(cnfe); } catch (SQLException sqle) { System.err.println(sqle); } } } I'm running it on a Windows XP machine. I configured the classpath and path properly but now i'm all out of ideas. PLEASE HELP OUT A GREENHORN........ Thanks!
"maximillion2000", The Java Ranch has thousands of visitors every week, many with surprisingly similar names. To avoid confusion we have a naming convention, described at http://www.javaranch.com/name.jsp . We require names to have at least two words, separated by a space, and strongly recommend that you use your full real name. Please re-register and select a new name which meets the requirements. Thanks. Dave