2 messages in com.mysql.lists.javaproblem connecting
FromSent OnAttachments
vincent leycuras28 Oct 1999 04:46 
William G. Russell28 Oct 1999 08:52 
Subject:problem connecting
From:vincent leycuras (lv@hotmail.com)
Date:10/28/1999 04:46:38 AM
List:com.mysql.lists.java

Hi! I m quite new to JDBC and the java world in general and after having gone through all the documentation and tutorials, I still can t understand why a tiny program such as the one below still fails import java.sql.*; public class Essai { public static void main(String[] Args) { try { Class.forName("org.gjt.mm.mysql.Driver").newInstance(); Connection con = DriveManager.getConnection( "jdbc:mysql://localhost/COFFEEBREAK","root" ,"passwd" ); } catch (Exception E) { System.err.println("marche pas"); E.printStackTrace(); } } } jikes geives the following output: DriveManager is either a misplaced package package name or a non existent entity.

Any advice or suggestion welcome!! Vincent, Stuttgart.