赞
踩
driver = "com.mysql.cj.jdbc.Driver";
url ="jdbc:mysql://localhost:3306/数据库名称?serverTimezone=UTC";
usr="root";
password="密码";
接下来
try{
Class.forName(driver).newInstance();
conn=(Connection) DriverManager.getConnection(url,user,password);
}
Eclipse jee 也是这样写的。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。