sql >> Base de Datos >  >> RDS >> Mysql

¿Cómo conectar la aplicación de escritorio Java a una base de datos mysql en línea?

Descargue el conector desde aquí . Agrégalo a tu classpath y en el código:

// This will load the MySQL driver, each DB has its own driver
  Class.forName("com.mysql.jdbc.Driver");
  // Setup the connection with the DB
  connect = DriverManager
      .getConnection("jdbc:mysql://remoteUri/database-name?"
          + "user=user&password=userpw");