conexion a mysql java

Solutions on MaxInterview for conexion a mysql java by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "conexion a mysql java"
Aitana
20 Feb 2019
1String Url="jdbc:mysql://" + /* IP o Dominio de la base de datos*/ +"/" + /*La base de datos*/;
2//Importante encapsular la conexión en un 'try', puede dar errores.
3try {
4	BD_Conexion = DriverManager.getConnection(Url, /* Usuario */, /* Contraseña */);
5}catch(SQLException SQLError){
6  //Asegurate de que no da errores la conexion.
7}