POO_Pieces/DonjonBdB.java

40 lines
909 B
Java
Raw Normal View History

2023-12-20 13:39:18 +01:00
public class DonjonBd extends Donjon{
2023-12-20 13:47:35 +01:00
public Connection getConnection(){
try {
try {
Class.forName("org.mariadb.jdbc.Driver");
} catch (ClassNotFoundException e) {
System.err.println("La classe permettant la connexion au serveur SQL n'a pas été ouverte à l'exécution");
return null;
}
cnx = DriverManager.getConnection("jdbc:mariadb://dwarves.iut-fbleau.fr/elhaddad",
2023-12-20 11:14:51 +01:00
"elhaddad", "NassimPHP77550");
2023-12-20 13:47:35 +01:00
} catch (SQLException e) {
System.err.println("Connexion échouée");
}
return cnx;
}
2023-12-20 11:14:51 +01:00
2023-12-20 13:47:35 +01:00
public void Fermeture(){
try {
cnx.close();
} catch (SQLException e) {
System.err.println("Erreur dans la fermeture");
}
}
2023-12-20 14:04:57 +01:00
public Piece avant(){
}
public Piece apres(){
}
public Piece ajouterPiece(){
}
2023-12-20 11:14:51 +01:00
}