我有一个连接数据库的函数,我有一个代码,我在组合框中有一个选择和显示元素,所以我想传递类 connexion.java 组合框 selectedItem 因为它包含我拥有的所有数据库,所以我想要classe connexion 是动态的,所以传递在这个类中选择的元素我不知道我该怎么做,请帮助我
public class Connexion {
private static Connection conn;
{
try {
Class.forName("com.mysql.jdbc.Driver");
} catch (ClassNotFoundException ex) {
Logger.getLogger(Connexion.class.getName()).log(Level.SEVERE, null, ex);}
try {
conn = DriverManager.getConnection("jdbc:mysql://localhost/mohammedia", "root", "123456");
} catch (SQLException ex) {
Logger.getLogger(Connexion.class.getName()).log(Level.SEVERE, null, ex); }
}
public static Connection getconx()
{
return conn;
}
}