सबसे पहले आपको कनेक्शन से पहले JDBC ड्राइवर लोड करना होगा
// Notice, do not import com.mysql.jdbc.*
// or you will have problems!
//Load Driver
try {
// The newInstance() call is a work around for some
// broken Java implementations
Class.forName("com.mysql.jdbc.Driver").newInstance();
} catch (Exception ex) {
// handle the error
}
con=DriverManager.getConnection(connectieString);
System.out.println ("Database connection established");
सुनिश्चित करें कि आपके पास अपना एप्लिकेशन चलाते समय क्लासपाथ पर mysql-connector-java-5.x.x-bin.jar है।