gpt4 book ai didi

java - Mysql连接线程是否安全

转载 作者:可可西里 更新时间:2023-11-01 08:20:49 26 4
gpt4 key购买 nike

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 数据库吗?或者这不是线程安全的。

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

最佳答案

它不是线程安全的。每次需要时都必须建立新的连接。它永远不应是成员变量,而应始终是局部变量或方法参数。

关于java - Mysql连接线程是否安全,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12022807/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com