Bonjour tout le monde s'il vous je ne sais pas pourquoi ce code ne marche pas chez moi
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.Statement;
public class test1{
public static void main(String[] argv) throws Exception {
Class.forName("com.mysql.jdbc.Driver");
Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/mourad", "root", "root");
Statement st = con.createStatement();
st.executeQuery("select * from personne");
}
}

