本文介绍了如何使SQL连接语句通用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我必须在同一类的不同方法中执行几个SQL查询.有什么方法可以使这些语句变得通用,是否可以在所有方法中使用相同的con,statement变量来执行查询.
I have to execute several SQL queries in different methods of the same class. Is there any way to make these statements common and can I use the same con,statement variable in all the methods to execute queries.
Class.forName("com.mysql.jdbc.Driver").newInstance();
Connection con = DriverManager.getConnection ("jdbc:mysql://localhost:3306/kamal","root","root");
Statement statement=con.createStatement();
推荐答案
在您的课程中使用此方法,并一次又一次地调用它
use this method in your class and call it again and again
public Connection getMyConnection() throws ClassNotFoundException, SQLException
{
String connectionURL = "jdbc:mysql://localhost:3306/test";
Class.forName("com.mysql.jdbc.Driver");
Connection con = DriverManager.getConnection(connectionURL, "root", "root");
return con;
}
这篇关于如何使SQL连接语句通用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!