数据库
首页 > 数据库> > java-Mysql连接线程是否安全

java-Mysql连接线程是否安全

作者:互联网

public void SQLconnect() {
try {
  System.out.println("Connecting to MySQL database...");
  Class.forName("com.mysql.jdbc.Driver").newInstance();
  String conn = "jdbc:mysql://" + this.SQL_HOST/* + ":" + this.SQL_PORT */
      + "/" + this.SQL_DATA;
  this.con = DriverManager
      .getConnection(conn, this.SQL_USER, this.SQL_PASS);
} catch (ClassNotFoundException ex) {
  System.err.println("No MySQL driver found!");
} catch (SQLException ex) {
  System.err
      .println("Error while fetching MySQL connection!");
} catch (Exception ex) {
  System.err
      .println("Unknown error while fetching MySQL connection.");
 }
}

这是java,我可以使用连接“ con”从不同线程连接到MySql数据库吗?
还是这不是线程安全的.

如果它不是线程安全的,我该怎么做?

解决方法:

它不是线程安全的.每次需要连接时,您都必须获得一个新的连接.它绝不能是成员变量,而不能是局部变量或方法参数.

标签:thread-safety,java,mysql
来源: https://codeday.me/bug/20191127/2076737.html