Código
package Conexion; import java.sql.*; import javax.swing.JOptionPane; public class Conexionn { try{ Class.forName("com.mysql.jdbc.Connection"); if(conn!=null) JOptionPane.showMessageDialog(null,"No se pudo conectar la base de datos","error",JOptionPane.ERROR_MESSAGE); } } }
la base de datos que quiero es la base de datos "recetario" y el código que tengo es este.
Código
edgar@EdgarCompu:~$ mysql -u root -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 6 Server version: 5.7.13-0ubuntu0.16.04.2 (Ubuntu) Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | performance_schema | | recetario | | sys | +--------------------+ 5 rows in set (0.00 sec) mysql>
cabe mencionar que ya tengo agregado la biblioteca mysql-connector-java-5.1.39 que descargue la pagina de Oracle. Bueno si alguien es buena persona y me podría ayudar, se lo agradecería eternamente.