
28/07/2005, 03:24
|
| | Fecha de Ingreso: julio-2005
Mensajes: 7
Antigüedad: 19 años, 8 meses Puntos: 0 | |
Ayuda con MySQL, Java y Eclipse Tengo un problema a la hora de conectarme a la base de datos MySQL con Java en el entorno de Eclipse.
Mi código es el siguiente: String driver = "jdbc:mysql://localhost/bdchato";
String usuario = "root";
String clave = "";
try{
Class.forName("com.mysql.jdbc.Driver").newInstance ();
conexion = DriverManager.getConnection(driver,usuario,clave);
Y me da el siguiente error: java.sql.SQLException: Cannot connect to MySQL server on localhost:3306. Is there a MySQL server running on the machine/port you are trying to connect to? (java.lang.NumberFormatException)
Por favor necesito ayuda |