Java mysql
Révision datée du 1 juillet 2016 à 11:10 par Jc.forton (discussion | contributions) (→Inclusion dans le WAR)
Introduction
Connecteur MySQL
Inclusion dans le WAR
Mettre le JAR dans le répertoire /WebContent/WEB-INF/lib
Connexion
package fr.sio.pg.test;
import java.sql.DriverManager;
public class TestMysql {
public static void main(String[] args){
String bdd = "pg";
String host = "localhost";
int port = 3306;
try{
Class.forName("com.mysql.jdbc.Driver");
DriverManager.getConnection("jdbc:mysql://"+host+":"+port+"/"+bdd,"root","password");
System.out.println("CONNEXION REUSSIE !");
}catch (Exception e){
System.out.println("echec pilote : "+e);
}
}
}