我是JDBC的新手,并且使用教程来创建我的第一个连接。但是,出现以下错误-
线程“ main” com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException中的异常:无法创建与数据库服务器的连接。
import java.sql.*;
public class Demo {
public static void main(String[] args) throws Exception {
String url="jdbc:mysql://localhost:3306//demo";
String user="root";
String password="vishal123";
String query = "select * from student";
Class.forName("com.mysql.jdbc.Driver");
Connection con = DriverManager.getConnection(url,user,password);
Statement st = con.createStatement();
ResultSet rs = st.executeQuery(query);
rs.next();
String name = rs.getString("user_name");
System.out.println(name);
st.close();
con.close();
}
}
如果需要更多详细信息来解决问题,请告诉我。