Hi,
I am having some problems displaying DB-info in IExplorer. When I run the applet in JBuilder I see all the info that is being queried from the DB. But when it's shown in a browser I get don't see anything. I've put a few 'System.out.println()' before and after the connection. As displayed below:
Code:
System.out.println("Before: connection");
con = DriverManager.getConnection("jdbc:mysql://localhost/bubbels?user=root");
System.out.println("After: connection"+ con);
The JAVA-Console I only see the 'System.out.println("Before: connection");'. And the MySQL-Driver is being found.