06/07/2006, 09:51
|
| | Fecha de Ingreso: noviembre-2004
Mensajes: 68
Antigüedad: 20 años Puntos: 0 | |
ESTE ES EL CODIGO DE CONEXION:
import java.sql.*;
public class TestConnection
{
static String bd = "agendita";
static String login = "bingo";
static String password = "holahola";
static String url = "jdbc:mysql://localhost/"+bd;
public static void main(String[] args) throws Exception
{
Connection conn = null;
try
{
Class.forName("com.mysql.jdbc.Driver").newInstance ();
conn = DriverManager.getConnection(url,login,password);
if (conn != null)
{
System.out.println("Conexión a base de datos "+url+" ... Ok");
conn.close();
}
}
catch(SQLException ex)
{
System.out.println(ex);
}
catch(ClassNotFoundException ex)
{
System.out.println(ex);
}
}
} |