我在使用这种语法时遇到了一些麻烦:
Connection con = null;
Statement st = null;
ResultSet rset = null;
/**
* Creates new form formUsers
*/
public formUsers() {
initComponents();
con = SQLInteract.SQLInteract();
tableUpdate();
}
我正在尝试调用与我已经建立的 MySQL 数据库的连接,该数据库包含在该类的构造函数方法中。我只是以某种方式搞砸了语法,还是根本不能这样做?或者它真的像使用一样简单:
SQLInteract Connect = new SQLInteract();
按照要求; 这是 SQLInteract 语法:
Connection con = null;
Statement st = null;
ResultSet rset = null;
public SQLInteract() {
try{
Class.forName("com.mysql.jdbc.Driver");
con = DriverManager.getConnection("jdbc:mysql://localhost:3306/chemsimdb","root","");
}catch(Exception e) {
JOptionPane.showMessageDialog(null, e);
}
}