Problems in your database connectivity?
Here is the solution .For those using netbeans Here is the class
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.util.logging.Level;
import java.util.logging.Logger;
public class CreateDB
{
public static Connection getConnection()
{
String driver="com.mysql.jdbc.Driver";
String url="jdbc:mysql://localhost:3306/tax";//name of the database(tax)
String username="root";
String password="";
try {
Class.forName(driver);
} catch (ClassNotFoundException ex) {
Logger.getLogger(CreateDB.class.getName()).log(Level.SEVERE, null, ex);
}
Connection con = null;
try {
con = (Connection) DriverManager.getConnection(url,username,password);
} catch (SQLException ex) {
Logger.getLogger(CreateDB.class.getName()).log(Level.SEVERE, null, ex);
}
return con;
}
}